Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 12, 2023 16:13
Show Gist options
  • Save suhailgupta03/9025e0f49e7e3b1aa53144090e0f89b5 to your computer and use it in GitHub Desktop.
Save suhailgupta03/9025e0f49e7e3b1aa53144090e0f89b5 to your computer and use it in GitHub Desktop.
var manojStudent = {
'name': 'manoj',
'age': 17,
'city': 'udaipur',
'class': '1st semster of college',
'weight': 55.67
}
for(var nameOfKey in manojStudent) {
console.log(nameOfKey, "..", manojStudent[nameOfKey]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment