.length of an array 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 array length
let desserts = ["Cake", "Pie", "Brownies"];
console.log(desserts.length); // 3