js: array limité en nombre avec push() code example
Example: javascript ajouter une donnée à une list
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']
let liste = ["azerty"]
liste.push('hello')
console.log(liste) //["azerty",'hello']