Fixed a grammatical error

This commit is contained in:
Billy Shih 2013-08-19 15:19:48 -07:00
parent f33dea8b83
commit cf90a62a7a

View File

@ -342,7 +342,7 @@ myPrototype.meaningOfLife = 43;
myObj.meaningOfLife; // = 43
// 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.
// The first is Object.create, which is a recent addition to JS, and therefore