Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 22, 2014 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/ce2146b5a8f22b00a2f9 to your computer and use it in GitHub Desktop.
Save devdays/ce2146b5a8f22b00a2f9 to your computer and use it in GitHub Desktop.
jQuery Map Example
var groceryIndices = $.map(myData.products, function (val, i) {
return val.category == "Grocery" ? val.myProductIndex = i : null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment