Merge pull request #1668 from javascript-tutorial/paroche-patch-12

Update article.md
This commit is contained in:
Peter Roche 2019-12-08 22:50:58 -07:00 committed by GitHub
commit 524d598846
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ During the call, `say()` uses the outer variable `phrase`. Let's look at the det
When a function runs, a new Lexical Environment is created automatically to store local variables and parameters of the call.
For instance, for `say("John")`, it looks like this (the execution is at the line, labelled with an arrow):
For instance, for `say("John")`, it looks like this (the execution is at the line labeled with an arrow):
<!--
```js