V School | Better Humans, Better Outcomes

Pokemon List

The following exercise should be completed in vanilla JavaScript. Use https://api.vschool.io/pokemon as your url for your XHR request to get the big list of pokemon. It will be easiest to do this is steps: * Step one - get the data * Step two - display the data

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

V School | Better Humans, Better Outcomes © 2026