Created
January 30, 2018 15:21
-
-
Save shabaz-ejaz/c3a9437fab123f67f3baf71d66fd3e4e to your computer and use it in GitHub Desktop.
Array map shorthand
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
const arr = [7, 4, 1, 4]; | |
{[...arr].map((x, i) => | |
<p>Element</p> | |
)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment