Skip to content

Commit c9fcfd7

Browse files
authored
some minor changes
1 parent de297bb commit c9fcfd7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# JavaScript Strings Lab
22

3-
Welcome to another JavaScript lab!
3+
Welcome to a JavaScript lab!
44

55
![lab](http://i.giphy.com/NETCsDYm0fL44.gif)
66

77
## Objectives
88

9-
In this lab, we're going to work with strings. Remember, strings in JavaScript are wrapped in single or double quotes, or in back ticks.
9+
In this lab, we're going to work with strings. Strings in JavaScript are wrapped in single or double quotes, or in back ticks.
1010

1111
By the end of this lab, you'll have learned how to do the following:
1212

@@ -25,7 +25,7 @@ One might think that we could just type
2525
Hello, everybody!
2626
```
2727

28-
in our browser's console and be done with it. Give it a try.
28+
in our browser's console and be done with it. Give it a try. (If you're on a Mac, that would be `Command` + `Option` + `J` together.)
2929

3030
You should see something like
3131

@@ -137,17 +137,17 @@ What if, instead of assigning `""` to `greeting`, we assign `"Hello, everybody!"
137137
var greeting = "Hello, everybody!";
138138
```
139139

140-
and rerun your tests. You should see
140+
save the file, and rerun your tests. You should see
141141

142142
![first test passes!](https://curriculum-content.s3.amazonaws.com/skills-based-js/javascript-strings-lab/javascript-strings-lab-test-pass.png)
143143

144144
Nice! You got the first test to pass.
145145

146-
Now use the skills that you learned above to read through the rest of the test output and fix those errors, too!
146+
Now use the skills that you learned above to read through the rest of the test output and fix those errors, too! Always remember to save your file before re-running your tests.
147147

148148
**NOTE**: Because we're dealing with some low-level language features, you might spot some easy ways to "cheat" on this lab, or this lab might seem frustratingly easy. We've given you some starter code to point you in the right direction — try to solve the lab as intended! You can then compare your solution with ours (found in the `solution` branch of this repository).
149149

150-
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).
150+
When your tests are passing, submit your answer by typing in `learn submit` in the command line or else create a pull request (use Learn submit if "pull request" sounds a bit terrifying).
151151

152152
Good luck!
153153

0 commit comments

Comments
 (0)