-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMini-Linter.js
More file actions
34 lines (23 loc) · 1.88 KB
/
Mini-Linter.js
File metadata and controls
34 lines (23 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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' ];
//split story into words
const storyWords = story.split(" ");
//count number of words
const numberWords = (storyWords.length);
//remove unnecessary words
let betterWords = storyWords.filter(x => !unnecessaryWords.includes(x));
//count new number of words
console.log(betterWords.length);
//comparing words and overusedwords
let intersection = betterWords.filter(x => overusedWords.includes(x));
//counting overusedwords
let acc = intersection.reduce((acc, val) => acc.set(val, 1 + (acc.get(val) || 0)), new Map());
const re = /[.!?]/;
const numOfSentences = story.split(re);
const numberSentences = (numOfSentences.length - 1);
console.log("word count " + numberWords);
console.log("sentence count " + numberSentences);
console.log("overused words")
console.log(acc);
console.log(betterWords.join(' '));