Javascript get all key in object

How to Get All Keys (Including Symbols) from an Object in JavaScript or Node.js

We recently added a new feature to the @supercharge/map package: create a map from an object. Objects and maps represent key-value pairs. We iterated through the object’s keys to create the related entries in the map.

While iterating through the object keys, we noticed that properties were missing in the used for…in loop. For example, symbols or non-enumerable properties weren’t available in the map. But they were on the object! Why are they missing?

This tutorial shows you how to retrieve all keys of an object, including symbols!

Node.js Series Overview

  1. Increase the Memory Limit for Your Process
  2. Why You Should Add “node” in Your Travis Config
  3. Create a PDF from HTML with Puppeteer and Handlebars
  4. Create Your Own Custom Error
  5. Retrieve a Request’s IP Address in Node.js
  6. Detect the Node.js Version in a Running Process or App
  7. How to Base64 Encode/Decode a Value in Node.js
  8. Check if a Value Is Null or Undefined in JavaScript or Node.js
  9. How to Fix “Uncaught SyntaxError: Cannot use import statement outside a module”
  10. Fix „Socket Hang Up“ Errors
  11. Nested Destructuring in JavaScript or Node.js
  1. String Replace All Appearances
  2. Remove All Whitespace From a String in JavaScript
  3. Generate a Random ID or String in Node.js or JavaScript
  4. Remove Extra Spaces From a String in JavaScript or Node.js
  5. Remove Numbers From a String in JavaScript or Node.js
  6. Get the Part Before a Character in a String in JavaScript or Node.js
  7. Get the Part After a Character in a String in JavaScript or Node.js
  8. How to Check if a Value is a String in JavaScript or Node.js
  9. Check If a String Includes All Strings in JavaScript/Node.js/TypeScript
  10. Check if a Value is a String in JavaScript and Node.js
  11. Limit and Truncate a String to a Given Length in JavaScript and Node.js
  12. Split a String into a List of Characters in JavaScript and Node.js
  13. How to Generage a UUID in Node.js
  14. Reverse a String in JavaScript or Node.js
  15. Split a String into a List of Lines in JavaScript or Node.js
  16. Split a String into a List of Words in JavaScript or Node.js
  17. Detect if a String is in camelCase Format in Javascript or Node.js
  18. Check If a String Is in Lowercase in JavaScript or Node.js
  19. Check If a String is in Uppercase in JavaScript or Node.js
  20. Get the Part After First Occurrence in a String in JavaScript or Node.js
  21. Get the Part Before First Occurrence in a String in JavaScript or Node.js
  22. Get the Part Before Last Occurrence in a String in JavaScript or Node.js
  23. Get the Part After Last Occurrence in a String in JavaScript or Node.js
  24. How to Count Words in a File
  25. How to Shuffle the Characters of a String in JavaScript or Node.js
  26. Append Characters or Words to a String in JavaScript or Node.js
  27. Check if a String is Empty in JavaScript or Node.js
  28. Ensure a String Ends with a Given Character in JavaScript or Node.js
  29. Left-Trim Characters Off a String in JavaScript or Node.js
  30. Right-Trim Characters Off a String in JavaScript or Node.js
  31. Lowercase the First Character of a String in JavaScript or Node.js
  32. Uppercase the First Character of a String in JavaScript or Node.js
  33. Prepend Characters or Words to a String in JavaScript or Node.js
  34. Check if a String is a Number
  35. Convert a String to Buffer
  1. Get Number of Seconds Since Epoch in JavaScript
  2. Get Tomorrow’s Date in JavaScript
  3. Increase a Date in JavaScript by One Week
  4. Add Seconds to a Date in Node.js and JavaScript
  5. Add Month(s) to a Date in JavaScript or Node.js
  6. Add Week(s) to a Date in JavaScript or Node.js
  7. Get the Current Year in JavaScript or Node.js
  8. How to Get a UNIX Timestamp in JavaScript or Node.js
  9. How to Convert a UNIX Timestamp to a Date in JavaScript or Node.js
  10. Add Days to a Date in JavaScript or Node.js
  11. Get Yesterday’s Date in JavaScript or Node.js
  12. Add Minutes to a Date in JavaScript or Node.js
  13. Add Hours to a Date in JavaScript or Node.js
  14. Check If a Date Is Today in JavaScript or Node.js
  15. Check If a Date is Tomorrow in JavaScript or Node.js
  16. Check If a Date is Yesterday in JavaScript or Node.js
  17. How to Format a Date YYYY-MM-DD in JavaScript or Node.js
  1. How to Run an Asynchronous Function in Array.map()
  2. How to Reset and Empty an Array
  3. for…of vs. for…in Loops
  4. Clone/Copy an Array in JavaScript and Node.js
  5. Get an Array With Unique Values (Delete Duplicates)
  6. Sort an Array of Integers in JavaScript and Node.js
  7. Sort a Boolean Array in JavaScript, TypeScript, or Node.js
  8. Check If an Array Contains a Given Value in JavaScript or Node.js
  9. Add an Item to the Beginning of an Array in JavaScript or Node.js
  10. Append an Item at the End of an Array in JavaScript or Node.js
  11. How to Exit and Stop a for Loop in JavaScript and Node.js
  12. Split an Array Into Smaller Array Chunks in JavaScript and Node.js
  13. How to Get an Index in a for…of Loop in JavaScript and Node.js
  14. How to Exit, Stop, or Break an Array#forEach Loop in JavaScript or Node.js
  15. Retrieve a Random Item From an Array in JavaScript or Node.js
  16. How to Reverse an Array in JavaScript and Node.js
  17. Sort an Array of Strings in JavaScript, TypeScript or Node.js
  18. Sort an Array of Objects in JavaScript, TypeScript or Node.js
  19. Check If a Value Is an Array in JavaScript or Node.js
  20. Join an Array of Strings to a Single String Value
  1. How to Merge Objects
  2. How to Check if an Object is Empty in JavaScript or Node.js
  3. How to CamelCase Keys of an Object in JavaScript or Node.js
  4. How to Snake_Case Keys of an Object in JavaScript or Node.js
  5. How to Destructure a Dynamic Key in JavaScript or Node.js
  6. How to Get All Keys (Including Symbols) from an Object in JavaScript or Node.js
  7. How to Delete a Key From an Object in JavaScript or Node.js
  8. Iterate Through an Object’s Keys and Values in JavaScript or Node.js
  9. How to Convert URLSearchParams to Object
  10. Check If a Value Is an Object in JavaScript or Node.js
  11. Conditionally Add Properties to an Object in JavaScript or Node.js
  12. How to Lowercase Keys of an Object in JavaScript or Node.js
  1. Get a File’s Created Date
  2. Get a File’s Last Modified or Updated Date of a File
  3. How to Create an Empty File
  4. Check If a Path or File Exists
  5. How to Rename a File
  6. Check If a Path Is a Directory
  7. Check If a Path Is a File
  8. Retrieve the Path to the User’s Home Directory
  9. How to Touch a File
  10. Read File Content as String
  11. Check If a Directory Is Empty
  12. How to Create a Directory (and Parents If Needed)
  13. Get a File‘s Extension
  14. Get the Size of a File
  15. Get a File Name (With or Without Extension)
  16. Read a JSON File
Читайте также:  Total least squares python

Get All Keys Including Symbols From a JavaScript Object

JavaScript objects can have non-enumerable properties. Non-enumerable properties are available when accessing them directly, like obj.nonEnumerableProperty . But these properties won’t show up when looping over an object’s properties using a for…in loop.

You can find more details about an object’s property enumerability in the MDN docs.

A way to iterate through all properties of an object is using the Reflect.ownKeys method. Reflect.ownKeys returns the list of enumerable, non-enumerable, and symbol keys of a given object.

Here’s a sample function returning the keys of a given obj ect:

/** * Returns all keys from the given `obj`ect. * * @returns > */ function keysOf(obj)

You may use the keysOf function like this:

const users = < 1: 'Marcus', 'user:2': 'Norman', [Symbol.for('christian')]: 'Christian' >const keys = keysOf(users) // ['1', 'user:2', Symbol(christian)] 

Please notice: Reflect.ownKeys() doesn’t return inherited enumerable properties. This can happen when working with class inheritance. You may not retrieve the properties of your base class using this approach with an inherited class instance.

Also, notice that JavaScript coerces all keys to a string. The example contains a key-value pair 1: ‘Marcus where the key 1 is a number. Everything is a string when retrieving an object’s keys in JavaScript.

Mentioned Resources

Get Notified on New Future Studio
Content and Platform Updates

Get your weekly push notification about new and trending
Future Studio content and recent platform enhancements

Источник

Object.keys()

The Object.keys() static method returns an array of a given object’s own enumerable string-keyed property names.

Try it

Syntax

Parameters

Return value

An array of strings representing the given object’s own enumerable string-keyed property keys.

Description

Object.keys() returns an array whose elements are strings corresponding to the enumerable string-keyed property names found directly upon object . This is the same as iterating with a for. in loop, except that a for. in loop enumerates properties in the prototype chain as well. The order of the array returned by Object.keys() is the same as that provided by a for. in loop.

If you need the property values, use Object.values() instead. If you need both the property keys and values, use Object.entries() instead.

Examples

Using Object.keys()

// Simple array const arr = ["a", "b", "c"]; console.log(Object.keys(arr)); // ['0', '1', '2'] // Array-like object const obj =  0: "a", 1: "b", 2: "c" >; console.log(Object.keys(obj)); // ['0', '1', '2'] // Array-like object with random key ordering const anObj =  100: "a", 2: "b", 7: "c" >; console.log(Object.keys(anObj)); // ['2', '7', '100'] // getFoo is a non-enumerable property const myObj = Object.create( >,  getFoo:  value()  return this.foo; >, >, >, ); myObj.foo = 1; console.log(Object.keys(myObj)); // ['foo'] 

If you want all string-keyed own properties, including non-enumerable ones, see Object.getOwnPropertyNames() .

Using Object.keys() on primitives

Non-object arguments are coerced to objects. Only strings may have own enumerable properties, while all other primitives return an empty array.

// Strings have indices as enumerable own properties console.log(Object.keys("foo")); // ['0', '1', '2'] // Other primitives have no own properties console.log(Object.keys(100)); // [] 

Note: In ES5, passing a non-object to Object.keys() threw a TypeError .

Specifications

Browser compatibility

BCD tables only load in the browser

See also

Found a content problem with this page?

This page was last modified on Feb 21, 2023 by MDN contributors.

Your blueprint for a better internet.

MDN

Support

Our communities

Developers

Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998– 2023 by individual mozilla.org contributors. Content available under a Creative Commons license.

Источник

Оцените статью