1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 17:54:26 +02:00

Merge pull request #261 from bbshih/patch-1

Fixed a grammatical error
This commit is contained in:
Adam Bard
2013-08-20 08:50:11 -07:00

View File

@@ -342,7 +342,7 @@ myPrototype.meaningOfLife = 43;
myObj.meaningOfLife; // = 43 myObj.meaningOfLife; // = 43
// We mentioned that __proto__ was non-standard, and there's no standard way to // We mentioned that __proto__ was non-standard, and there's no standard way to
// change the prototype of an existing object. However, there's two ways to // change the prototype of an existing object. However, there are two ways to
// create a new object with a given prototype. // create a new object with a given prototype.
// The first is Object.create, which is a recent addition to JS, and therefore // The first is Object.create, which is a recent addition to JS, and therefore