V School | Better Humans, Better Outcomes

Responsive Color Grid Bootstrap

Using the bootstrap grid system create a website that looks like this: Here are the colors: * #F5C6D6 * #EE2E84 * #85CFD8 * #8DC63F * #E76E34

Loops & Arrays

Create a function called createEvenArray. It will have 1 parameter called highestNum where you will pass in the highest number that you want to create even numbers up to. Create a for loop inside that function that pushes all even numbers up to that highest number to that array. The

Function Chaining

Create 5 different functions. Each function should print to the console something funny, and then call the next function. Each function should also have 1 parameter. This parameter will be called iteration. Every time you get to the 5th function you should increase the iteration by one, and then pass

Javascript Calculator (Node)

You are going to create a calculator in pure Javascript using NodeJS and readline-sync. Your script must have: * A function that adds two numbers and returns the result * A function that multiplies two numbers and returns the result * A function that divides two numbers and returns the result * A function

Even/Odd Looping

Create a for loop that iterates through 101 numbers (from 0 - 100). If the current iteration is an Odd number, print "Odd" to the console, otherwise print "Even".

V School | Better Humans, Better Outcomes © 2026