V School | Better Humans, Better Outcomes

Warmup - StringSplosion

Create a function that, given any non-empty string, returns a string where each character is concocted with each of the preceding characters. Example: stringSplosion("ab") //Output: "aab" stringSplosion("abc") //Output: "aababc" stringSplosion("Code") //Output: "CCoCodCode" Hint: You'll first want to identify the pattern before writing the code.

Warmup - Snoozed

We want to program our alarm clock according to our schedule. In this exercise, we will create a function that has a parameter for weekdays and another for holidays. Both arguments, to be passed in, will be booleans. This function should know when we should sleep in, returning true. Example:

CSS

Introduction Cascading Style Sheets define how HTML elements are to be displayed. CSS is going to save you a ton of work and at the same time will enable you to re-use code. Inline Styling Styles were added to HTML 4 to allow users to edit the look and feel

HTML / HTML 5

HTML is the skin and bones of the internet. HTML is used on every single website on the internet. By learning to use HTML you are setting a foundation of knowledge that is absolutely essential if you ever want to qualify for even the most junior of all web developer

Bootstrap

Back to Top ### Post Table of Contents * Intro to Bootstrap * Installation * The Grid System * Containers * Rows and Columns * Column Offset * Nesting Columns * Push and Pull * Apply What You've Learned * Forms * Inline Forms * Horizontal Forms * Static Forms * Disabled Inputs * Readonly Inputs * Validation Styling * Validation Icons * Input Sizes * Input Widths * Help Text

V School | Better Humans, Better Outcomes © 2026