Skip to content

Commit

Permalink
Grammatical error under prototypes section
Browse files Browse the repository at this point in the history
Changed there is no "affect" to "effect"
  • Loading branch information
Asipita committed Dec 10, 2019
1 parent 17b8e89 commit edc0433
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-started/ch3.md
Expand Up @@ -256,7 +256,7 @@ homework.topic;
// "JS" -- not "Math"
```

The assignment to `topic` creates a property of that name directly on `otherHomework`; there's no affect on the `topic` property on `homework`. The next statement then accesses `otherHomework.topic`, and we see the non-delegated answer from that new property: `"Math"`.
The assignment to `topic` creates a property of that name directly on `otherHomework`; there's no effect on the `topic` property on `homework`. The next statement then accesses `otherHomework.topic`, and we see the non-delegated answer from that new property: `"Math"`.

| NOTE: |
| :--- |
Expand Down

0 comments on commit edc0433

Please sign in to comment.