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:
HTML
<!DOCTYPE html> < html > < body > < svg width = "350" height = "350" < 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" < script > var a=[1,2,4,56]; console.log(a.length) </ script > </ svg > </ body > </ html > |
Output:
Please Login to comment...