--- id: 56533eb9ac21ba0edf2244ba title: Understand String Immutability challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(myStr === "Hello World", "myStr should have a value of Hello World");' - text: '' testString: 'assert(/myStr = "Jello World"/.test(code), "Do not change the code above the line");' ```
## Challenge Seed
```js // Setup var myStr = "Jello World"; // Only change code below this line myStr[0] = "H"; // Fix Me ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```