Last active
September 10, 2015 07:34
-
-
Save asci/0cedff1da12c208605b1 to your computer and use it in GitHub Desktop.
Arrow functions problem
This file contains hidden or 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
const test = 0; | |
let superLongValue = 'other value'; | |
const someObject = {}; | |
someObject.methodB = test >= superLongValue + 'text'; | |
someObject.otherMethodC = test => superLongValue = test; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment