Open In App

SVG DOMStringList.length Property

Last Updated : 30 Mar, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The SVG DOMStringList.length property returns the length of the given DOMStringList element.

Syntax:

len= DOMStringList.Length

Return value: This property returns the length of the DOMStringList.

Example 1: 

HTML




<!DOCTYPE html> 
<html
  
<body
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg">
  
        <script>
            var a=["gfg","a","c","eg"];
            console.log(a.length)
        </script>
    </svg>
</body
  
</html


Output:

Example 2: 

HTML




<!DOCTYPE html> 
<html
  
<body
    <svg width="350" height="350" 
        xmlns="http://www.w3.org/2000/svg">
  
        <script>
            var a=[1,2,4,56];
            console.log(a.length)
        </script>
    </svg>
</body
  
</html>


Output:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads