My code is working well, but nothing logged after the for loop. Also there is no error massage. When I comment or remove the for loop, the rest of the code working properly. but when I uncomment it or rewrite it, the code after it disappear from the console.
I keep reviewing the syntax and trying the code in different console but still facing the same issue
can someone review it and told me what is wrong here!!!
main.js
let story = 'Last weekend, I took literally the most beautiful bike ride of my life. The route is called "The 9W to Nyack" and it actually stretches all the way from Riverside Park in Manhattan to South Nyack, New Jersey. It\'s really an adventure from beginning to end! It is a 48 mile loop and it basically took me an entire day. I stopped at Riverbank State Park to take some extremely artsy photos. It was a short stop, though, because I had a really long way left to go. After a quick photo op at the very popular Little Red Lighthouse, I began my trek across the George Washington Bridge into New Jersey. The GW is actually very long - 4,760 feet! I was already very tired by the time I got to the other side. An hour later, I reached Greenbrook Nature Sanctuary, an extremely beautiful park along the coast of the Hudson. Something that was very surprising to me was that near the end of the route you actually cross back into New York! At this point, you are very close to the end.';
let overusedWords = ['really', 'very', 'basically'];
let unnecessaryWords = ['extremely', 'literally', 'actually' ];
const storyWords = story.split(' ')
console.log('Story words = ' + storyWords.length)
const betterWords = storyWords.filter(word =>{
This file has been truncated. show original
mtf
December 15, 2019, 6:14pm
#2
Line 21 doesn’t look right. There is a return but no function to return from. If you want that loop to run completely through, don’t use return.
1 Like
system
closed
December 16, 2019, 12:52pm
#4
This topic was automatically closed 18 hours after the last reply. New replies are no longer allowed.