var str = "I hope ducks don't smile upon me whenever I pretend to be a duck!";
var matchAgainst = ['duck', 'smile', 'cows']
for (var ma = 0; ma < matchAgainst.length; ba++)
if (str = matchAgainst.match(matchAgainst))
{
document.write
}
Well, I'm out of ideas here si I'll explain what problem I need to be solved.
> Search for a match in "matchAgainst" array.
> If true, return
word = amount(ascending order)
For example if the line was "I hope ducks don't smile upon me whenever I pretend to be a duck!", the output should be:
duck = 2
smile = 1
(Don't print 'cow = 0', it's unecesarry)
But if the line was: "Today was not a good day", no output.
Thank you.