V School | Better Humans, Better Outcomes

Exercise - Project Setup Refresher

Angular Setup We are going to work help you memorize how to set up an a basic Angular app. You will do this over an over for each Angular project and you need to get this down! Requirements 1. Build the HTML from scratch 2. Load Angular framework from a

Angular Beginnings

Angular Setup We are going to work help you memorize how to set up an a basic Angular app. You will do this over an over for each Angular project and you need to get this down! Requirements 1. Load Angular framework from a CDN 2. Create an Angular module

Functions

What is a function? “A function is a JavaScript procedure—a set of statements that performs a task or calculates a value.” - MDN Web Docs Analogy Think about some appliances in your kitchen: a dishwasher, refrigerator, toaster, oven, etc. Each of these appliances do a very specific thing – dishwashers

Letter Frequency

Find the frequency of all characters in a given word or phrase, and print them to the console. * Contain the characters and their counts within an object. * Each character will be its own key * Each value will be the character's frequency. Example: const phrase = 'slimy smelly solution'; arrayIndex = (str) => { // Manipulation

Loops

What is a loop? Any time you find yourself needing to repeat the same code over and over, you'll oftentimes need a loop. Imagine you're tasked with console.logging the numbers 1 through 1,000 to the console. Obviously this would be very obnoxious and repetitive to write manually. But

V School | Better Humans, Better Outcomes © 2026