summaryrefslogtreecommitdiffhomepage
path: root/javascript.html.markdown
diff options
context:
space:
mode:
authorSteven Senatori <senatori@mail.sfsu.edu>2013-11-02 17:30:36 -0700
committerSteven Senatori <senatori@mail.sfsu.edu>2013-11-02 17:30:36 -0700
commit34b0264620c540bcdc451c96996ff5a38a6d26db (patch)
treefdc3454acf16c949da802d32ee6588d3c55dda53 /javascript.html.markdown
parentcba64739f5e61f8fb524dc1cc88cbb31920d2b86 (diff)
fixing one of my corrections, no idea why I delted the }; on line 333 previously...sorry
Diffstat (limited to 'javascript.html.markdown')
-rw-r--r--javascript.html.markdown1
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