Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created May 12, 2024 17:03
Show Gist options
  • Save TheShubhamVsnv/390b432732ebf48d6e7d3f165096c1b5 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/390b432732ebf48d6e7d3f165096c1b5 to your computer and use it in GitHub Desktop.
let numbers = [1, 2, 3, 4];
let evenNumbers = numbers.filter(num => num % 2 === 0); // Get even numbers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment