V School | Better Humans, Better Outcomes

Loop Olympics

The exercise will get progressively harder. You at least should get one medal, but feel free to go the extra mile! Preliminaries 1. Write a for loop that prints to the console the numbers 0 through 9. 2. Write a for loop that prints to the console 9 through 0.

Array Building Exercise

Make an array of 4 student objects with the following properties * name * age and the following data types: * array * boolean Print each student's name and age to the console

Black Rock Digital Using Props

Create this site in React (you can feel free to change the styling a little bit, but the layout should be similar) https://blackrockdigital.github.io/startbootstrap-clean-blog/ There two points to this exercise. #1: Using the App component to contain a few of the major components of the page. #2:

Axios in React

Introduction Getting data from an API to display in your React app takes a couple steps. In this lesson, we will see how to use: * state * an axios call in componentDidMount * .map() To see a list of Todos from the API We will start state with an empty array, and

Vacation Spots Using Props and Map

Feel free to customize the given the array: let vacationSpots = [ { place: "Meridian, Idaho", price: 40, timeToGo: "Spring" },{ place: "Cancun", price: 900, timeToGo: "Winter" },{ place: "China", price: 1200, timeToGo: "Fall" },{ place: "Russia", price: 1100, timeToGo: "Summer" },{ place: "Lebanon", price: 400, timeToGo: "Spring" } ] Use .map() and props to create multiple vacation

V School | Better Humans, Better Outcomes © 2026