Skip to content

Commit 39a8883

Browse files
author
jlew826
committedJun 28, 2016
typo- changed "world" to "everybody"
1 parent 0c19666 commit 39a8883

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ But reading on, we only see `+Hello, everybody!` — what's going on? Why isn't
126126

127127
Next, the title tells us that `strings.js` "defines `myString`." Let's look in `strings.js` — sure enough, we see, at the top of the file, `myString = "";`. Seems like a reasonable place to start.
128128

129-
What if, instead of assigning `""` to `greeting`, we assign `"Hello, world!"`, like the test expects. Go ahead and change that line in `strings.js` so it reads
129+
What if, instead of assigning `""` to `greeting`, we assign `"Hello, everybody!"`, like the test expects. Go ahead and change that line in `strings.js` so it reads
130130

131131
``` javascript
132-
var greeting = "Hello, world!";
132+
var greeting = "Hello, everybody!";
133133
```
134134

135135
and rerun your tests. You should see
@@ -145,3 +145,5 @@ Now use the skills that you learned above to read through the rest of the test o
145145
When your tests are passing, submit your answer with `learn submit` or else create a pull request (use Learn submit if "pull request" sounds a bit terrifying).
146146

147147
Good luck!
148+
149+
<p class='util--hide'>View <a href='https://learn.co/lessons/javascript-strings-lab'>JavaScript Strings Lab</a> on Learn.co and start learning to code for free.</p>

0 commit comments

Comments
 (0)
Failed to load comments.