Concorsez le tableau à la chaîne JavaScript

let array = ['one', 'two', 'three']

// These two are exactly the same
console.log(...array) // one two three
console.log('one', 'two', 'three') // one two three
yusuf_fazeri