JS Projects Archive
A collection of personal mini projects
Mini Linter
Task: Pseudo Word processing software - to improve the quality of a paragraph and gather some information about that paragraph.
Skill: Iterate over arrays
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.';
//sample text to filter, story
const storyWords = story.split(' ');
let overusedWords = ['really', 'very', 'basically'];
let unnecessaryWords = ['extremely', 'literally', 'actually' ];
// Now to filter out unnecesary words, elements thats true goes to new array
let filteredWords = storyWords.filter(function(word) {
return !unnecessaryWords.includes(word)
//<name of list you WANT>.includes(<NAME OF ARRAY TO FILTER>
//grab words NOT included in unneccesary words, include ! sign
})
//to let user know how many times they have overused words
let countWord = (i =>{
count = 0;
for (j in overusedWords){
if(j===i){
count ++
} else {
return count
}
}
})
console.log(filteredWords);Number Guesser Game
Task: User input number from 0-9, computer random gen 0-9, secret target established, whoever closer to secret number wins
Comprises of 4 files, game.js, script.js (main game logic), index.html and css
Intermediate JS : Modules - Super - Encoder
Message-Mixer.js (Input Output Logic)
2. Encryption Function encryptors.js
3. super-encoder.js (Chaining encoding together)
Results

Last updated