Skip to content

Instantly share code, notes, and snippets.

View AbdelrhmanAmin's full-sized avatar
🐯

Abdo Amin AbdelrhmanAmin

🐯
  • Front-End Web Developer
  • Egypt, Alexandria.
View GitHub Profile
// Pop quiz! What gets logged?
var o = {
[console.log('before')]: 4,
foo: (function () {
console.log('nope :(');
throw 'nope'
})(),
[console.log('after')]: 4