Created
September 1, 2016 21:25
-
-
Save pallavagarwal07/2ab05e66c5f74acca7872c2f2bcc670e 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
{ | |
{ | |
name: "Pallav", | |
age: 19 | |
}, | |
{ | |
name: "Kunal", | |
age: 20 | |
}, | |
{ | |
name: "Saksham", | |
age: 20 | |
}, | |
{ | |
name: "Vinayak", | |
age: 20 | |
} | |
} | |
would create a table like this: | |
-------------- | |
name | age| | |
-------------- | |
pallav | 19 | | |
kunal | 20 | | |
saksham | 20 | | |
vinayak | 20 | | |
-------------- | |
(The table has to be HTML code, the above diagram is for representation purposes only) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shouldn't the outer most brackets be
[]
and not{}
?