Skip to content

Instantly share code, notes, and snippets.

@dnlsyfq
Created May 12, 2021 15:33
Show Gist options
  • Save dnlsyfq/7479b492218863e7258d9df2be426f6c to your computer and use it in GitHub Desktop.
Save dnlsyfq/7479b492218863e7258d9df2be426f6c to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/debozoh
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
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' ];
let storyWords = story.split(' ')
let betterWords = storyWords.filter(words => {
for(word in unnecessaryWords){
if(words === word){
continue
} else {
return words
}
}
})
// let dict = new Object()
let dict = {}
for(let sWords in storyWords){
for(let oWords in overusedWords){
if(storyWords[sWords]=== overusedWords[oWords]){
if(storyWords[sWords] in dict){
dict[storyWords[sWords]] += 1
} else {
dict[storyWords[sWords]] = 1
}
} else {
continue
}
}
}
let sentence = 0 ;
for(let sWords in storyWords){
if( storyWords[sWords].includes(".") || storyWords[sWords].includes("!") ){
sentence += 1
} else {
continue
}
}
console.log(`The Word Count: ${storyWords.length}`)
console.log(`The Sentence Count: ${sentence}`)
console.log(`The number of times each overused word appears: `)
console.log(dict)
console.log(betterWords.join(' '))
</script>
<script id="jsbin-source-javascript" type="text/javascript">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' ];
let storyWords = story.split(' ')
let betterWords = storyWords.filter(words => {
for(word in unnecessaryWords){
if(words === word){
continue
} else {
return words
}
}
})
// let dict = new Object()
let dict = {}
for(let sWords in storyWords){
for(let oWords in overusedWords){
if(storyWords[sWords]=== overusedWords[oWords]){
if(storyWords[sWords] in dict){
dict[storyWords[sWords]] += 1
} else {
dict[storyWords[sWords]] = 1
}
} else {
continue
}
}
}
let sentence = 0 ;
for(let sWords in storyWords){
if( storyWords[sWords].includes(".") || storyWords[sWords].includes("!") ){
sentence += 1
} else {
continue
}
}
console.log(`The Word Count: ${storyWords.length}`)
console.log(`The Sentence Count: ${sentence}`)
console.log(`The number of times each overused word appears: `)
console.log(dict)
console.log(betterWords.join(' '))</script></body>
</html>
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' ];
let storyWords = story.split(' ')
let betterWords = storyWords.filter(words => {
for(word in unnecessaryWords){
if(words === word){
continue
} else {
return words
}
}
})
// let dict = new Object()
let dict = {}
for(let sWords in storyWords){
for(let oWords in overusedWords){
if(storyWords[sWords]=== overusedWords[oWords]){
if(storyWords[sWords] in dict){
dict[storyWords[sWords]] += 1
} else {
dict[storyWords[sWords]] = 1
}
} else {
continue
}
}
}
let sentence = 0 ;
for(let sWords in storyWords){
if( storyWords[sWords].includes(".") || storyWords[sWords].includes("!") ){
sentence += 1
} else {
continue
}
}
console.log(`The Word Count: ${storyWords.length}`)
console.log(`The Sentence Count: ${sentence}`)
console.log(`The number of times each overused word appears: `)
console.log(dict)
console.log(betterWords.join(' '))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment