You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# JavaScript Strings Lab
2
2
3
-
Welcome to another JavaScript lab!
3
+
Welcome to a JavaScript lab!
4
4
5
5

6
6
7
7
## Objectives
8
8
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.
10
10
11
11
By the end of this lab, you'll have learned how to do the following:
12
12
@@ -25,7 +25,7 @@ One might think that we could just type
25
25
Hello, everybody!
26
26
```
27
27
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.)
29
29
30
30
You should see something like
31
31
@@ -137,17 +137,17 @@ What if, instead of assigning `""` to `greeting`, we assign `"Hello, everybody!"
137
137
var greeting ="Hello, everybody!";
138
138
```
139
139
140
-
and rerun your tests. You should see
140
+
save the file, and rerun your tests. You should see
141
141
142
142

143
143
144
144
Nice! You got the first test to pass.
145
145
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.
147
147
148
148
**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).
149
149
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).
0 commit comments