diff --git a/guide/english/javascript/scopes/index.md b/guide/english/javascript/scopes/index.md index 7174909b19..58ca0b80a8 100644 --- a/guide/english/javascript/scopes/index.md +++ b/guide/english/javascript/scopes/index.md @@ -23,7 +23,7 @@ Before you type the first line of code in your program, a _global scope_ is crea In the example above, the variable `foo` is in the global scope of the program, while the variable `bar` is declared inside a function and is therefore **in the local scope of that function**. -Lets break down the example line by line. While you might be confused at this point, I promise you will have a much better understanding by the time you finish reading this. +Let's break down the example line by line. While you might be confused at this point, I promise you will have a much better understanding by the time you finish reading this. On line 1 we are declaring the variable `foo`. Nothing too fancy here. Lets call this a left-hand size (LHS) reference to `foo`, because we are assigning a value to `foo` and it's on the left-hand side of the `equal` sign.