Consider the following code snippet:
const name = 'John';
name = 'Jane';
console.log(name);
What will be the output of the console.log statement?
Consider the following code snippet:
const name = 'John';
name = 'Jane';
console.log(name);
What will be the output of the console.log statement?