V School | Better Humans, Better Outcomes

Modules

Shaping Your Program “A beginning programmer writes her programs like an ant builds her hill, one piece at a time, without thought for the bigger structure. Her programs will be like loose sand. They may stand for a while, but growing too big they fall apart. Realizing this problem, the

Career Preparation Homework

Ongoing assignments: * 2 tweets per week * add each weekly presenter to LinkedIn and send personalized invite to connect thanking him or her for the presentation. Career Prep Presentations https://www.youtube.com/playlist?list=PLuQaqxepLcYiiiYQEuQLvqlvqNA1utkDv Week 1 - Networking/Search & Apply * Updated LinkedIn and Resume with V School info. * Create

No Duplicates

Given a string, remove any duplicate letters. Example: var input = "bookkeeper larry"; // Output: "bokepr lay" Extra Credit: * Create a function that randomly removes a letter. * Create a function that scrambles the original string. * Create a function using regular expressions that remove all vowels.

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

Objects

Objects are collections of properties and values. { name: 'Tommy Boy', age: 26, weight: 306, friends: ['Richard', 'Michelle'] } var person = { fullName: 'Tommy Boy', age: 26, weight: 306, friends: ['Richard', 'Michelle'] }; // Two ways to access the data at a object's property: console.log(person.age); console.log(person['age']); Objects vs Arrays

V School | Better Humans, Better Outcomes © 2026