Skip to content

Instantly share code, notes, and snippets.

@rehasantiago
Last active March 26, 2022 18:30
Show Gist options
  • Save rehasantiago/468f598e75e992c544952f33d899fdf6 to your computer and use it in GitHub Desktop.
Save rehasantiago/468f598e75e992c544952f33d899fdf6 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);
}
}
setTimeout(song.getSong, 1000)// undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment