Created
May 21, 2012 02:32
-
-
Save jlengstorf/2760314 to your computer and use it in GitHub Desktop.
#3 Code example from "JSON: What It Is, How It Works, & How to Use It"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var family = [{ | |
"name" : "Jason", | |
"age" : "24", | |
"gender" : "male" | |
}, | |
{ | |
"name" : "Kyle", | |
"age" : "21", | |
"gender" : "male" | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!!!!!!!!