Files
30-seconds-of-code/collections/js/object-key-selection.yaml
Angelos Chalaris 9d032ce05e Rename js snippets
2023-05-19 20:23:47 +03:00

17 lines
603 B
YAML

slug: js/object-key-selection
name: JavaScript Object Key Selection
featured: true
snippetIds:
- js/s/pick-object-keys
- js/s/omit-object-keys
- js/s/pick-matching-object-keys
- js/s/omit-matching-object-keys
splash: succulent-cluster.png
description: >-
Sometimes, JavaScript objects come with a lot of keys and you only need a few
of them. Other times, you might want to remove certain keys, instead. Whatever
the case, we've got you covered with this snippet collection.
shortDescription: >-
Pick and omit keys from JavaScript objects easily, using the snippets in this
collection.