Last active
February 23, 2020 09:33
-
-
Save Arieg419/d96a44a6c56a187db497a6c54ca7de31 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var pokemon = { | |
firstname: 'Pika', | |
lastname: 'Chu ', | |
getPokeName: function() { | |
var fullname = this.firstname + ' ' + this.lastname; | |
return fullname; | |
} | |
}; | |
var pokemonName = function() { | |
console.log(this.getPokeName() + 'I choose you!'); | |
}; | |
var logPokemon = pokemonName.bind(pokemon); // creates new object and binds pokemon. 'this' of pokemon === pokemon now | |
logPokemon(); // 'Pika Chu I choose you!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
'this' of pokemon === pokemon now
.Do you mean
'this' of pokemonName === pokemon now
?