Computer Science, asked by rb2809517, 5 months ago

Go through the JavaScript code snippet below: // const a = Number(1) const b = Number(1) // Write the output and reason for the following expression: (a===b)+a const a = new Number(1) const b = new Number(1) Write the output and reason for the following expression: (a===b)+a

Answers

Answered by sophiajohn07leema
2

Answer:

The value of a constant can't be changed through reassignment, and it can't be redeclared.

Similar questions