7. APIs - What are these things eh?
Application Programming Interfaces (API) are basically ways for various systems to talk to each other. And share info. In a nice secure way, where the systems can ensure that data going out or
Application Programming Interfaces (API) are basically ways for various systems to talk to each other. And share info. In a nice secure way, where the systems can ensure that data going out or
Classes are this really cool way of creating repeatable objects that have similar properties! What an understatement! Alright, let's go. class Animal { talk() { console.log("Moooo"); } } async function main(
The time has come! You've got some cool ideas bouncing around in your head, and now it's time to do some cooooooool stuff with em! function print() { console.log(
Alright! One of the major pieces of any JS program are objects. Objects take many forms, but today we'll focus on JSON (JavaScript Object Notation). Compared to other types of objects,
So we've got a little hello world program, and there's not much in it. It's time to learn about variables and their types! Take this thing up