js new array of length code example

Example 1: length of an array javascript

const clothing = ['shoes', 'shirts', 'socks', 'sweaters'];

console.log(clothing.length);
// expected output: 4

Example 2: js new array of length

ES6 gives us Array.from so now you can also use 
Array.from(Array(5)).forEach(alert)

If you want to initialize with a certain value, these are good to knows...
Array.from('abcde'),
Array.from('x'.repeat(5))
or 
Array.from({length: 5}, (v, i) => i)   // gives [0, 1, 2, 3, 4]

Example 3: array length javascript

var numbers = [1, 2, 3, 4, 5];
var length = numbers.length;
for (var i = 0; i < length; i++) {
  numbers[i] *= 2;
}
// numbers is now [2, 4, 6, 8, 10]

Example 4: javascript size array

let array = [1, 2, 3];
console.log(array.length);

Example 5: length of an array javascript

array.length

Example 6: js length of array

arr = ["a", "b", "c"];
len = arr.length; // 3

Tags:

C Example