mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
s/self/this in JavaScript
This commit is contained in:
parent
50444ed21f
commit
94ef913f98
@ -364,7 +364,7 @@ myObj.meaningOfLife // = 43
|
|||||||
// are given when they're created with that constructor and the new keyword.
|
// are given when they're created with that constructor and the new keyword.
|
||||||
myConstructor.prototype = {
|
myConstructor.prototype = {
|
||||||
getMyNumber: function(){
|
getMyNumber: function(){
|
||||||
return self.myNumber
|
return this.myNumber
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var myNewObj2 = new myConstructor()
|
var myNewObj2 = new myConstructor()
|
||||||
|
Loading…
Reference in New Issue
Block a user