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
2
Answer:
The value of a constant can't be changed through reassignment, and it can't be redeclared.
Similar questions