Propiedad SVG DOMStringList.length

La propiedad SVG DOMStringList.length rthe

Sintaxis:

len= DOMStringList.Length

Valor devuelto: Esta propiedad devuelve

Ejemplo 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> 

Producción:

Ejemplo 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>

Producción:

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *