Skip to content

Instantly share code, notes, and snippets.

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