Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created July 27, 2023 16:27
Show Gist options
  • Save suhailgupta03/24b2a554acc30323f3373f53398c1909 to your computer and use it in GitHub Desktop.
Save suhailgupta03/24b2a554acc30323f3373f53398c1909 to your computer and use it in GitHub Desktop.
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