Files
30-seconds-of-code/snippets/js/s/common-keys.md
2023-05-07 16:07:29 +03:00

636 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Common keys snippet javascript
object
chalarangelo symmetry-cloudy-mountain 2022-04-23T05:00:00-04:00

Finds the common keys between two objects.

  • Use Object.keys() to get the keys of the first object.
  • Use Object.prototype.hasOwnProperty() to check if the second object has a key that's in the first object.
  • Use Array.prototype.filter() to filter out keys that aren't in both objects.
const commonKeys = (obj1, obj2) =>
  Object.keys(obj1).filter(key => obj2.hasOwnProperty(key));
commonKeys({ a: 1, b: 2 }, { a: 2, c: 1 }); // ['a']