Today we are going to learn about creating reusable code to create a gallery project. Let's begin with creating a closure - the ability to create a function that has scope. More on that …
Troubleshooting APIs
Today, we are going to play around with an API from recipepuppies.com which isn't a perfect API - the intention is to learn how to navigate problems you may come across with APIs. Hopefully, you will …
Ajax & APIs
APIs allow you to interact with some big data platforms like twitter and pull their data to your application, then display it. To pull data from a website, they first have to offer a web API. …
Async, Await, & Recursion
Sidebar, the formatting is intentionally different between this article and the last one, while I nail down with intention which one I prefer. I'd love to hear your preference in the comments or on …
Async Await
In this project, we will be working with promises. Specifically, we are going to use with async & await to build a prompt interface. When someone clicks on something on the page, we want them to …
Javascript IOU – Promises
The solution to callback purgatory is promises. Promises are the idea of an IOU for something that will happen in the future. When we request a timer, api to reply, microphone or camera to be …