0 votes
in JavaScript by
What's the output?
console.log('' + '');
  • A: ""
  • B: 257548
  • C: A string containing their code points
  • D: Error

1 Answer

0 votes
by

Answer: A

With the + operator, you can concatenate strings. In this case, we are concatenating the string "" with the string "", resulting in "".

...