Skip to content

Commit

Permalink
Fixed typo in the description (#39)
Browse files Browse the repository at this point in the history
Changed "the value of first cell" to "the value of *the* first cell"
  • Loading branch information
drbrounsuga authored and zbicin committed Nov 20, 2016
1 parent 5f043e3 commit 3b95613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/exercises/destructuring/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ console.log(foo); // 1
console.log(bar); // 2
```

In the above example, the value of first cell of `numbers` is being assigned to a variable `foo` and the value of the second cell to a variable `bar`.
In the above example, the value of the first cell of `numbers` is being assigned to a variable `foo` and the value of the second cell to a variable `bar`.

A slightly different syntax is needed in order to assign cell values to object properties, instead of variables:

Expand Down

0 comments on commit 3b95613

Please sign in to comment.