(Ad, please don’t block.)

Quizzes Β» Strings

1. Which of these expressions is true?

2. Plus operator (1/4)

const result = 3 + 1 + ' oranges';

What happens?

3. Plus operator (2/4)

const result = 3 + (1 + ' oranges');

What happens?

4. Plus operator (3/4)

const result = 'Oranges: ' + 3 + 1;

What happens?

5. Plus operator (4/4)

const result = 'Oranges: ' + (3 + 1);

What happens?

6. Which expressions are true?


Correct answers: 0 out of 0