diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2013-11-02 17:54:49 -0700 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2013-11-02 17:54:49 -0700 |
commit | 40f2b2d9d52fb8a497a2aeba2184439bf78e4911 (patch) | |
tree | fdc3454acf16c949da802d32ee6588d3c55dda53 | |
parent | ed9cd4fb6b93a42b11987fdcff28d4bfafd7977f (diff) | |
parent | 34b0264620c540bcdc451c96996ff5a38a6d26db (diff) |
Merge pull request #399 from senatori/master
fixing one of my corrections, no idea why I deleted the }; on line 333
-rw-r--r-- | javascript.html.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index 36aad102..2d665e67 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -330,6 +330,7 @@ var myPrototype = { myFunc: function(){ return this.myString.toLowerCase() } +}; myObj.__proto__ = myPrototype; myObj.meaningOfLife; // = 42 |