Created
November 8, 2016 04:57
-
-
Save hasibkamal/1f7b1362be6f7ce97d32bd4144e9866c 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
//http://jsonlint.com | |
//single object | |
var persons = { | |
"name": "milon", | |
"roll": 305021, | |
"email": "[email protected]", | |
"address": "Dhaka", | |
"phone": "01831614476" | |
} | |
// multiple object | |
var persons = { | |
"persons": { | |
"name": "milon", | |
"roll": 305021, | |
"email": "[email protected]", | |
"address": "Dhaka", | |
"phone": "01831614476" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment