Skip to content

Instantly share code, notes, and snippets.

@VoloshchenkoAl
Created August 15, 2017 15:53
Show Gist options
  • Save VoloshchenkoAl/6bd902d72cce68a4ba09a5b4337e5f77 to your computer and use it in GitHub Desktop.
Save VoloshchenkoAl/6bd902d72cce68a4ba09a5b4337e5f77 to your computer and use it in GitHub Desktop.
function countHolders(array, placeholder) {
var length = array.length,
result = 0;
while (length--) {
if (array[length] === placeholder) {
++result;
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment