Open In App

SVG DOMStringList.length Property

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: 






<!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: 




<!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:


Article Tags :