taille tableau js code example
Example 1: MDN array length
const clothing = ['shoes', 'shirts', 'socks', 'sweaters'];
console.log(clothing.length);
// expected output: 4
Example 2: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']