V School | Better Humans, Better Outcomes

Colored Info Boxes

Create a component that you can reuse 10 times. This component should be able to receive props for: * Background Color * Title * Subtitle * Information This component should be styled and built out well. Manually pass in props for each component from a parent component.

Business Homepage in React

You will come up with a business that interests you and create a homepage. Your home page will need: 1. A nav bar 2. An info section 3. A list of products or services 4. Images 5. A footer App should render the , a

and the
. Main

Multiple Array Methods Part 1

You should use multiple array methods to solve these problems. Don't use for loops! Using the provided peopleArray (bottom of this article), write a function that: 1. Returns a list of everyone older than 18, which is 2. sorted alphabetically by last name, and where 3. each name and age

Array Map Exercises

Use the built-in .map() method on arrays to solve all of these problems Feel free to copy and paste the function and tests in this assignment. 1) Make an array of numbers that are doubles of the first array function doubleNumbers(arr){ // your code here } console.log(doubleNumbers([2, 5,

Array Filter Exercises

Use the built-in array method .filter() to solve all of these problems Feel free to copy and paste the function and tests in this assignment. 1) Given an array of numbers, return a new array that has only the numbers that are 5 or greater. function fiveAndGreaterOnly(arr) { // your code

V School | Better Humans, Better Outcomes © 2026