Skip to content

Instantly share code, notes, and snippets.

@intrnl
Created August 17, 2020 06:25
Show Gist options
  • Select an option

  • Save intrnl/a28fd009ec66055f9c3e8bf11f9c2eed to your computer and use it in GitHub Desktop.

Select an option

Save intrnl/a28fd009ec66055f9c3e8bf11f9c2eed to your computer and use it in GitHub Desktop.
function count (str: string, search: string) {
let n = -1;
let i = 0;
while (i !== -1) {
i = str.indexOf(search, i + 1);
n++;
}
return n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment