Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 15:34
Show Gist options
  • Save unknownuser88/8284506 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284506 to your computer and use it in GitHub Desktop.
array to json javascript
var myarray = [];
var myJSON = "";
$.each(data.data,function(i,val) {
var item = {
"name": val.name,
"facebookId": val.id,
"picture": val.picture.data.url
};
myarray.push(item);
})
myJSON = JSON.stringify(myarray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment