Consider the following code snippet:
const PI = 3.14159;
PI = 3.14;
console.log(PI);
What will be the output of the console.log statement?
Consider the following code snippet:
const PI = 3.14159;
PI = 3.14;
console.log(PI);
What will be the output of the console.log statement?