semmypurewal/LearningWebAppDev

tweet.indexOf should be tweet.text.indexOf

Closed this issue · 1 comments

Also, on page 199 the code:

'if (tweet.indexOf("awesome") > -1)’

should be:

'if (tweet.text.indexOf("awesome") > -1)’

This was reported by David Boles.