Skip to content

Commit 3f1ab33

Browse files
martypowellmbeaudru
authored andcommitted
removed duplicate links and reworded as needed (mbeaudru#70)
1 parent 7ef044f commit 3f1ab33

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ highlight`I like ${condiment} on ${meal}.`;
10611061
// "I like <mark>jam</mark> on <mark>toast</mark>."
10621062
```
10631063

1064-
A more interesting example:
1064+
A more interesting example:
10651065
```js
10661066
function comma(strings, ...values) {
10671067
return strings.reduce((prev, next) => {
@@ -1211,11 +1211,7 @@ JavaScript is a [prototype-based](https://en.wikipedia.org/wiki/Prototype-based_
12111211

12121212
The word *class* is indeed error prone if you are familiar with classes in other languages. If you do, avoid assuming how JavaScript classes work on this basis and consider it an entirely different notion.
12131213

1214-
Since this document is not an attempt to teach you the language from the ground up, I will believe you know what prototypes are and how they behave. But here are some links I found great to understand this notion:
1215-
1216-
- [Understanding Prototypes in JS - Yehuda Katz](http://yehudakatz.com/2011/08/12/understanding-prototypes-in-javascript/)
1217-
- [A plain English guide to JS prototypes - Sebastian Porto](http://sporto.github.io/blog/2013/02/22/a-plain-english-guide-to-javascript-prototypes/)
1218-
- [Inheritance and the prototype chain - MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Inheritance_and_the_prototype_chain)
1214+
Since this document is not an attempt to teach you the language from the ground up, I will believe you know what prototypes are and how they behave. If you do not, see the external resouces listed below the sample code.
12191215

12201216
#### Samples
12211217

0 commit comments

Comments
 (0)