Skip to content

Instantly share code, notes, and snippets.

@wpninj
Created October 13, 2020 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpninj/5b7e384f38c7551c31dc96043282c80b to your computer and use it in GitHub Desktop.
Save wpninj/5b7e384f38c7551c31dc96043282c80b to your computer and use it in GitHub Desktop.
Javascript Filter Object's keys
let points = {a: -1, b: -1, c: -1, d: -1, e: -1, f: 3, z:4}
Object.keys(points).filter(key => ~'abcde'.indexOf(key))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment