js commet afficher un tableau mdn 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']