Skip to content

Instantly share code, notes, and snippets.

@smashew
Created July 29, 2015 20:09
Show Gist options
  • Save smashew/c8a3bf321dd5e9fa2551 to your computer and use it in GitHub Desktop.
Save smashew/c8a3bf321dd5e9fa2551 to your computer and use it in GitHub Desktop.
Don't worry guys... I fixed it... (loosely based on https://gist.github.com/pmuellr/2439eaa0aba88b7d7947)
let you = {
would: { }
};
let think = {
like: {
this: you
}
};
() => {
you.would.love = {
it: {
here: () => {
console.log('@VerizonCareers');
}
}
};
if (you === think.like.this) {
you.would.love.it.here();
}
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment