Open In App

SVG DOMStringList.length Property

Last Updated : 30 Mar, 2022
Comments
Improve
Suggest changes
Like Article
Like
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:


Similar Reads