Understand String Immutability
Summary
- JavaScript strings can not be changed after creation.
Final Code
// Setup
var myStr = "Jello World";
// Only change code below this line
myStr = "Hello World"; // Change this line
// Only change code above this line