“8.1.4. Longitud de matriz o longitud” Código de respuesta

8.1.2. Longitud de la matriz

/*To check the length of an array, use the length property, just like
with strings. JavaScript array length is NOT fixed, meaning you can
add or remove items dynamically.*/

//Print out the length of two arrays.
let emptyArray = [];
console.log(emptyArray.length);

let programmingLanguages = ["JavaScript", "Python", "Java", "C#"];
console.log(programmingLanguages.length);

//0
//4
Tough Tortoise

8.1.4. Longitud de matriz o longitud


int a[7];
std::cout << "Length of array = " << (sizeof(a)/sizeof(*a)) << std::endl;

Different Dugong

8.1.4. Longitud de matriz o longitud

/*What is the length of the two arrays?
Hint: look closely at the quotes in the classes array.*/

let classes = ["science, computer, art"];
console.log(classes.length); 
//1

let teachers = ["Jones", "Willoughby", "Rhodes"];
console.log(teachers.length); 
//3
Tough Tortoise

Respuestas similares a “8.1.4. Longitud de matriz o longitud”

Preguntas similares a “8.1.4. Longitud de matriz o longitud”

Más respuestas relacionadas con “8.1.4. Longitud de matriz o longitud” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código