Welcome to JavaScript Party

Algorithms, Music, Code, Photography, Random musings

What is this?

This is a way for me to share useful JavaScript learnings and to also help me save snippets and sweet bits of code for my future self.

Great bits of code... for everyone.

Javascript / HTML / CSS / Python / Django / AWK / BASH

≧◠‿◠≦✌

≧◉◡◉≦

(っ^▿^)

💪 (•︡益︠•) 👊

Latest stories

Chuck Norris stuff There's no greater rush than deciding to commit to learning a new trade and making something with your new skill. I've found it's the best way for me to solidify my skills and have fun at the same time. This is why I created my Norris joke generator app. I wanted to practice fetching data using Vanilla JS. It had been awhile since I used the ol' fetch API and man it was o fun…

Keep Reading →

“I suppose I ought to eat or drink something or other; but the great question is ‘What?’”—Chapter 4, The Rabbit Sends in a Little Bill Having the ability to step through code line by line has many benefits. First and foremost it helps with understanding. You can see exactly what's going on. Step by step. This gives you great power! Sometimes it's just easier to see exactly how the data is being…

Keep Reading →

🎬 That's right folks.. the wait is over.... I've finally launched the 3rd version of movieShuffle! Click here to visit the app This project came about because my partner and I are always struggling to decide on what to watch next.. I know right? Woe is me (seriously tho, it was a good excuse to write some code and dig into a new problem). A little history There's so much content out there. We've…

Keep Reading →

A promise in JavaScript is similar to a promise in your real life. -javascript ninja master Once it has been set, it usually lies within 3 different states. For example: 1. pending promise, which is similar to the initial state 2. fufilled promise - when the promise has been made and satisfied 3. rejected promise - meaning it was unfufilled or failed

Keep Reading →

Editing Code Shortcuts Switch VSCode theme: Cmd+k+t Skip to start and end of line: Cmd+Right Cmd+Left Move to start or end of file: Cmd+up Cmd+down Skip to start and end of word line: Option+Right Option+Left Copy/Paste or Cut lines of Code: Cmd+C - copy Cmd+V - paste Cmd+X - cut Move code lines up and down: Option+Up Option+Down Copy lines up and down: Shift+Option+Up Shift+Option+Down Delete…

Keep Reading →