Category: Javascript
JavaScript Short Circuiting: Using And/Or Instead of If-Else
The And && and Or || operators have a cool trick in Javascript. They don’t necessarily evaluate to a strict… Read more JavaScript Short Circuiting: Using And/Or Instead of If-Else
Rules of Boolean Logic in JavaScript
Boolean logic is like it’s own kind of weird math. Understanding how to get that weird math to do what… Read more Rules of Boolean Logic in JavaScript
Practice with Boolean Logic in JavaScript
Boolean logic is like it’s own kind of weird math. Understanding how to get that weird math to do what… Read more Practice with Boolean Logic in JavaScript
AJAX with Fetch and CrudCrud
While you’re learning AJAX and Fetch it’s helpful to have a practice REST API to work with. CrudCrud is a… Read more AJAX with Fetch and CrudCrud
Callback Functions Challenge: For Each
The .forEach() array method has ceased to exist and everyone is panicking! How will they ask Javascript to run a… Read more Callback Functions Challenge: For Each
For Loops Practice: Shopping Basket
Let’s practice with Javascript for and for-of loops. Review Remember, a for loop in Javascript works like this: And a… Read more For Loops Practice: Shopping Basket
For Loops Practice: Shopping Basket – Hints
If you’re working on the Shopping List Challenge and feeling a bit stuck, here are some hints to get you… Read more For Loops Practice: Shopping Basket – Hints