Last active
August 29, 2015 14:24
-
-
Save gtomitsuka/ce77a75d4956ecd1783d to your computer and use it in GitHub Desktop.
Does this work, too?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Me(){ | |
this.start = function(){ | |
console.log(this); | |
} | |
} | |
var me = new Me(); | |
var s = me.start.bind(me); | |
s('Test?') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment