Skip to content

Commit add7280

Browse files
committed
despo feedback
1 parent 678ada7 commit add7280

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

js/lesson1/tutorial.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ browsers. It is used to change what is displayed on a web page in
1212
response to user activity.
1313

1414
This tutorial is intended to give you a very brief introduction to JavaScript. It
15-
barely scratches the surface of all the things that you can do with it - this
16-
one is intended to be just enough for you to understand our next
17-
tutorials that do more interesting things.
15+
barely scratches the surface of all the things that you can do with it - it is enough for you to understand our next tutorials that do more interesting things.
1816

1917
Most words in programming have special meanings. We're going to take
2018
some time during this tutorial to explain what some of the commonly used words mean. Words which mean a specific thing will be marked in **bold**. Try to remember them, as it's important for you to understand what other programmers mean when they use them, and what the documentation means when you read it. You can always look back at this tutorial later to remind yourself.
@@ -109,18 +107,18 @@ value of two numbers with a `+` sign between them is those two numbers
109107
added together.
110108

111109

112-
> Now that you've learnt how to some simple maths, why not try out some more in your console?
110+
> Now that you've learnt how to do some simple maths, why not try out some more examples in your console?
113111
114112

115-
But, on websites we don't just see numbers so we want to do things with words too. A value containing letters is a **string**, and you write it in quotes. Try typing
113+
On websites however, we don't just see numbers so we want to do things with words too. A value containing letters is a **string**, and you write it in quotes. Try typing
116114
`'Hello'` on the console. Like before, you'll see it repeated back to you.
117115

118116
Try `'Hello' + 'there'`. You should see it combine the two strings
119117
into one. The value of two strings with a `+` sign between them is
120118
those two strings **concatenated**. You'll also see that it's missing a
121119
space - can you fix that?
122120

123-
> Now that you've learnt how to concatenate 2 strings, trying practising a few more so you become more comfortable with it?
121+
> Now that you've learnt how to concatenate 2 strings, trying practising more so you become more comfortable with it
124122
125123
Try typing `Hello` without any quotes around it. See how you get
126124
an error about `Hello` not being defined? Words that are not wrapped

0 commit comments

Comments
 (0)