🔰trailing comma
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
single trailing comma is allowed in array literal / object literal.
let arr = [ 1, 2, 3, ]; // 💡 single trailing comma allowed,
// ^ // won't create "undefined element".
let obj = { name: 'Joy', age: 17,
💾 replit:undefined elements in array literal