Created
May 12, 2023 15:57
-
-
Save suhailgupta03/456acb63e8e8eeda7c514ffe7d0f40a1 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 manojStudent = { | |
'name': 'manoj', | |
'age': 17, | |
'city': 'udaipur', | |
'class': '1st semster of college', | |
'weight': 55.67 | |
} | |
console.log(manojStudent['age']); | |
console.log(manojStudent['weight']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment