Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Last active April 30, 2017 04:46
Show Gist options
  • Save alvareztech/01f92890b39684907717532291e3cdc1 to your computer and use it in GitHub Desktop.
Save alvareztech/01f92890b39684907717532291e3cdc1 to your computer and use it in GitHub Desktop.
Get all data JavaScript object
for(key in data) {
if(data.hasOwnProperty(key)) {
var value = data[key];
console.log(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment