Created
July 27, 2023 16:27
-
-
Save suhailgupta03/24b2a554acc30323f3373f53398c1909 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 manish = { | |
name: 'Manish', | |
age: 25, | |
city: 'Bangalore', | |
employee: true, | |
id: 1, | |
skills: ['HTML', 'CSS', 'JS'], | |
salary: 100, | |
} | |
// if you want to print all the keys | |
const allKeys = Object.keys(manish); | |
console.log(allKeys); | |
const allValues = Object.values(manish); | |
console.log(allValues); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment