Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Last active September 25, 2016 15:26
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 freshcutdevelopment/06c1589e112de9735dbdf96ebb204417 to your computer and use it in GitHub Desktop.
Save freshcutdevelopment/06c1589e112de9735dbdf96ebb204417 to your computer and use it in GitHub Desktop.
var itemTagCount = [];
for(var i = 0; i < todoItems.length; i++ ){
var currentItem = todoItems[i];
itemTagCount.push({
id : currentItem.id,
numberOfTags : currentItem.Tags.length
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment