Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created February 17, 2020 04: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 bitfishxyz/41b4d1a072bdabbc108065d1ceae6cd9 to your computer and use it in GitHub Desktop.
Save bitfishxyz/41b4d1a072bdabbc108065d1ceae6cd9 to your computer and use it in GitHub Desktop.
function count(arr, targetValue){
let count = 0;
for(let ele of arr){
if (ele === targetValue) {
count++;
}
}
return count
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment