🔰trailing comma
let arr = [ 1, 2, 3, ]; // 💡 single trailing comma allowed,
// ^ // won't create "undefined element".
let obj = { name: 'Joy', age: 17, }
// ^ <---- trailing commaLast updated