Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Last active November 7, 2020 07:41
Show Gist options
  • Save ranamahmud/0d9c6a9923ce4408be15942d18a689b9 to your computer and use it in GitHub Desktop.
Save ranamahmud/0d9c6a9923ce4408be15942d18a689b9 to your computer and use it in GitHub Desktop.
const nums = [1, 2, 3, 4, 5, 6, 7, 8, 9];
function greater(num) {
return num > 5;
}
const largeNumbers = nums.find(greater);
console.log(largeNumbers)
\\ 6
const largeNumbers2 = nums.find(number => number > 5);
console.log(largeNumbers2)
\\ 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment