11.
Which symbol is used for string concatenation in JavaScript?
12.
What will be the output of the following code: console.log('Hello ' + 'World');?
13.
What is the purpose of the NaN (Not a Number) value in JavaScript?
14.
What will be the value of x after the following code executes: let x = '5' + 5;?
15.
Which method is used to convert a string to a number in JavaScript?
16.
What will be the output of the following code: console.log(parseInt('10.5'));?
17.
What is the purpose of using the === operator in JavaScript?
18.
Which statement correctly assigns the value true to a boolean variable isLogged in JavaScript?