Advertisement
Guest User

Untitled

a guest
May 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function findOccurences(sentence, word){
  2. let regex = new RegExp(`\b${word}\b`, 'ig'); //case-insensitive and global flags
  3. console.log(sentence.match(regex).length);
  4. }
  5.  
  6. findOccurences('The waterfall was so high, that the child couldn’t see its peak.', 'the');
  7. findOccurences('How do you plan on achieving that? How? How can you even think of that?', 'how');
  8. findOccurences('There was one. Therefore I bought it. I wouldn’t buy it otherwise.', 'there');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement