Beginner
How Does Variable Reassignment Work in JavaScript: Number to String Conversion
What will be the value of value after these lines execute?
1let value = 10;2value = "Hello";
What will be the value of value after these lines execute?
1let value = 10;2value = "Hello";