Skip to content

Instantly share code, notes, and snippets.

@rehasantiago
Last active March 26, 2022 18:25
Show Gist options
  • Save rehasantiago/8fb6185217574a41aa37bfd59330598f to your computer and use it in GitHub Desktop.
Save rehasantiago/8fb6185217574a41aa37bfd59330598f to your computer and use it in GitHub Desktop.
Revealing the mystery behind this - https://readosapien.com/revealing-the-mystery-behind-this
let song1 = {
song: 'Blank Space',
getSong: function() {
console.log(this.song);
}
};
let song2 = {
song: 'Shape of you',
};
let song = song1.getSong.bind(song2); // Shape of you
song();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment