Skip to content

Instantly share code, notes, and snippets.

@ross-u
ross-u / ad.md
Created October 8, 2019 15:27 — forked from diurivj/ad.md

React | Hooks

Learning Goals

After this lesson you will be able to:

  • Understand what are React Hooks and why are so hot 🔥
  • Understand how to use useState()
@ross-u
ross-u / README.md
Last active October 9, 2019 12:52
JS | DOM - Get The Titles - Exercise

JS | DOM

Get The Titles - Exercise


Task 1

In a new tab navigate to the Hacker News webpage, and open the Chrome Dev console (Command + Option + J).

@ross-u
ross-u / README.md
Last active March 23, 2024 14:12
JS | Asynchronous vs Synchronous

JS | Asynchronous vs Synchronous


Asynchronous Warm Up - Exercise


For this exercise you may use Repl.it or the Chrome console.

@ross-u
ross-u / README.md
Last active December 21, 2022 03:21
Canvas API - Basics

Canvas | Intro & Basic Drawing


The <canvas> tag

The HTML <canvas> tag serves as a container for canvas graphics.

You must use JavaScript to actually draw the graphics.

@ross-u
ross-u / README.md
Last active October 10, 2019 12:09
JS | Canvas API - Space Pacman

JS | Canvas API


'Space' Pacman - Exercise

@ross-u
ross-u / README.md
Last active October 10, 2019 12:29
JS | Canvas API - Lecture Notes

Canvas | Basic Animations


@ross-u
ross-u / README.md
Last active January 28, 2020 16:39
JS | ES 6 - Classes and Species - Exercise

JS | ES 6 - recap


Classes and Species - Exercise

@ross-u
ross-u / README.md
Last active February 1, 2023 15:15
JS | Promises & Async/Await - Code Along Starter Code

JS | Promise & async/await


Pokedex - Code Along examples


@ross-u
ross-u / ES5.js
Last active January 18, 2021 16:20
JS | Prototypes - ES5 vs ES6 syntax
function Product(name, price) {
this.name = name;
this.price = price;
}
Product.prototype.nameAndPrice = function() {
console.log(
"The product's name is: " + this.name,
"and the product's price is: " + this.price,
);
@ross-u
ross-u / README.md
Last active December 11, 2022 06:11
MongoDB | CRUD Operations - Create and query a collection - Exercise

MongoDB | CRUD Operations


img