Created
July 29, 2015 20:09
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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