What is obtained when executing the following code?
const letters = ['a', 'b', 'c'];
const together = letters.reduce((acc, l) => acc + l, '');
console.log(together);
What is obtained when executing the following code?
const letters = ['a', 'b', 'c'];
const together = letters.reduce((acc, l) => acc + l, '');
console.log(together);