V School | Better Humans, Better Outcomes

End of the world!

Create a web page with a timer that starts at 20 seconds and counts down to 0. When it reaches 0, display some large text that says, "The end of the world has come upon us" or something of the sort. (Feel free to get creative, too - change the

Postman Practice

For problems #1 and #2, reference the Star Wars API 1. Use Postman to GET a list of planets. 2. Use Postman to GET a single person object. For problems #3 - #6, use the https://api.vschool.io/[your_name]/todo endpoint. 3. Use Postman to POST 3 new

Quiz: Javascript

Coding Questions: Question: What is the value of foo? var foo = 10 + '20'; Question: How would you make this work? add(2, 5); // 7 add(2)(5); // 7 Question: What value is returned from the following statement? "i'm a lasagna hog".split("").reverse().join(""); Question: What is the value of

Forception - Loops within loops

Write a function that takes two arrays as parameters. The first array will be an array of people's names, and the second array will be the alphabet. Using a for loop within a for loop, create and return array that looks like this: function forception(people, alphabet){ // your code here

Alpha & Omega - Multi-dimensional Array

Create a multi dimensional array that has 100 grid elements. If the column is an odd number print the Omega symbol: var omega = '\u03A9'; If the column is an even number print the Alpha symbol: var alpha = '\u03B1' The end result should look similar to this: α Ω

V School | Better Humans, Better Outcomes © 2026