V School | Better Humans, Better Outcomes

Makes 10 Warm Up

Write a function where given 2 ints, a and b, it will return True if: one of them is 10 or their sum is 10. function makes10(a, b){ } makes10(9, 10) // True makes10(9, 9) // False makes10(1, 9) // True

Sum Double Warm Up

Write a function where given two int values, it will return their sum. Unless the two values are the same, then return double their sum. function sumDouble(a, b){ } sumDouble(1, 2) // 3 sumDouble(3, 2) // 5 sumDouble(2, 2) // 8

Odd odds? Warm up

Write a function where it will take an array of numbers and return true if there are an odd number of odd numbers and return false if there are an even number of odd numbers. Remember the % (modulo) returns the remainder, so if you want to check if n is

React: Build-a-Homepage

* Create a main class that will be rendered to the DOM. * Create 3 additional classes and nest them in your main class. * These 3 classes should be a header, body, and footer for a single web page. * Use CSS on each component. **You can get the basic React setup HERE:

JSON

JSON stands for JavaScript Object Notation. JSON is a syntax for storing and exchanging data. It will be what we use for storing data in a data base, and using the data from other websites in our own applications. Because we are dealing with objects, you will see many key:

V School | Better Humans, Better Outcomes © 2026