Skip to content

Instantly share code, notes, and snippets.

@r37r0m0d3l
Created March 24, 2018 21:25
Show Gist options
  • Select an option

  • Save r37r0m0d3l/f2017e96092a648ecca5b26e2b47b4c2 to your computer and use it in GitHub Desktop.

Select an option

Save r37r0m0d3l/f2017e96092a648ecca5b26e2b47b4c2 to your computer and use it in GitHub Desktop.
let mySet = new Set([1,2, 3, 4, 5]);
var filtered = [...mySet].filter((x) => x > 3) // [4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment