Last active
September 11, 2017 02:21
-
-
Save viswesh/0f43db1dee45b938e1929d3278754fba to your computer and use it in GitHub Desktop.
ES6 Arrow sample
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
var store = { | |
_language: “JavaScript”, | |
_features: [], | |
displayFeatures() { | |
this._features.forEach((feature, index) =>console.info(this._language + feature + index+ “ ”+ feature)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment