Skip to content

Instantly share code, notes, and snippets.

@lamchau
Created November 18, 2013 09:00
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 lamchau/7524799 to your computer and use it in GitHub Desktop.
Save lamchau/7524799 to your computer and use it in GitHub Desktop.
var characters = [
{
"user" : "mario",
"age" : 23,
"good" : true
},
{
"user" : "luigi",
"age" : 21,
"good" : true
},
{
"user" : "toad",
"age" : 19,
"good" : true
},
{
"user" : "bowser",
"age" : NaN,
"good" : false
},
{
"user" : "yoshi",
"age" : 50,
"good" : true
},
{
"user" : "king koopa",
"age" : +Infinity,
"good" : false
}
];
console.table(characters);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment