html array how to make \n code example
Example 1: MDN array length
const clothing = ['shoes', 'shirts', 'socks', 'sweaters'];
console.log(clothing.length);
// expected output: 4
Example 2: list from 1 to 100 js
[...Array(100).keys()]
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]