Challenge Understand String Immutability has an issue.
User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36
.
Please describe how to reproduce this issue, and include links to screenshots if possible.
My code:
// Setup
var myStr = "Jello World";
// Only change code below this line
mystr = "Hello World"; // Fix Me

Check your camel case in the variable name.
I'd also like to recommend posting your questions first in the main chat room or the HelpJavaScript room.
Okay. I will triple check before i log anymore defects. Wrong timings and decisions made by me. Thanks again.
I had a bug with this. But I was able to pass by making it a array. Please see below
// Setup
var myStr = "Jello World";
// Only change code below this line
var myStr = "Hello World";
var myStr1 = ["Hello World"];
myStr1[0] = "H"; // Fix Me
Most helpful comment
I had a bug with this. But I was able to pass by making it a array. Please see below
// Setup
var myStr = "Jello World";
// Only change code below this line
var myStr = "Hello World";
var myStr1 = ["Hello World"];
myStr1[0] = "H"; // Fix Me