2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244ba
title: Understand String Immutability
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cWPVaUR'
2019-07-31 11:32:23 -07:00
forumTopicId: 18331
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
In JavaScript, < code > String< / code > values are < dfn > immutable< / dfn > , which means that they cannot be altered once created.
For example, the following code:
2019-05-17 06:20:30 -07:00
```js
var myStr = "Bob";
myStr[0] = "J";
```
2018-09-30 23:01:58 +01:00
cannot change the value of < code > myStr< / code > to "Job", because the contents of < code > myStr< / code > cannot be altered. Note that this does < em > not< / em > mean that < code > myStr< / code > cannot be changed, just that the individual characters of a < dfn > string literal< / dfn > cannot be changed. The only way to change < code > myStr< / code > would be to assign it with a new string, like this:
2019-05-17 06:20:30 -07:00
```js
var myStr = "Bob";
myStr = "Job";
```
2018-09-30 23:01:58 +01:00
< / section >
## Instructions
< section id = 'instructions' >
Correct the assignment to < code > myStr< / code > so it contains the string value of < code > Hello World< / code > using the approach shown in the example above.
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
2019-11-27 02:57:38 -08:00
- text: < code > myStr</ code > should have a value of < code > Hello World</ code > .
2019-07-13 00:07:53 -07:00
testString: assert(myStr === "Hello World");
2019-11-27 02:57:38 -08:00
- text: You should not change the code above the specified comment.
2019-07-13 00:07:53 -07:00
testString: assert(/myStr = "Jello World"/.test(code));
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
// Setup
var myStr = "Jello World";
// Only change code below this line
2020-03-02 23:18:30 -08:00
myStr[0] = "H"; // Change this line
// Only change code above this line
2018-09-30 23:01:58 +01:00
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
(function(v){return "myStr = " + v;})(myStr);
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
var myStr = "Jello World";
myStr = "Hello World";
```
< / section >