Last active
February 24, 2019 05:26
-
-
Save Ranner198/ac1f9f75078d24b639de30ac10f9fdb1 to your computer and use it in GitHub Desktop.
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 json = { | |
"firstName": "John", | |
"lastName": "Smith", | |
"isAlive": true, | |
"age": 27, | |
"address": { | |
"streetAddress": "21 2nd Street", | |
"city": "New York", | |
"state": "NY", | |
"postalCode": "10021-3100" | |
}, | |
"phoneNumbers": [ | |
{ | |
"type": "home", | |
"number": "212 555-1234" | |
}, | |
{ | |
"type": "office", | |
"number": "646 555-4567" | |
}, | |
{ | |
"type": "mobile", | |
"number": "123 456-7890" | |
} | |
], | |
"children": [], | |
"spouse": null | |
}; | |
console.log(json); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment