Skip to content

Instantly share code, notes, and snippets.

@bultas
Last active August 29, 2015 14:15
Show Gist options
  • Save bultas/18eaec446983b468ec33 to your computer and use it in GitHub Desktop.
Save bultas/18eaec446983b468ec33 to your computer and use it in GitHub Desktop.
React Array Map
var arrayData = [...];
var arrayOfItems = arrayData.map(function(item, i) {
return (
<item key={i}>{item}</item>
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment