V School | Better Humans, Better Outcomes

Factorials

Write a JavaScript program to calculate the factorial of a number. In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example, 5! = 5 x 4 x 3 x 2 x 1 = 120

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

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