V School | Better Humans, Better Outcomes

Go Speed Clicker!

Make a site that tracks how many times the user has clicked anywhere on the page (or a specific button if you prefer) and displays that click count to the user. Then, using localStorage or sessionStorage, make it so the number of clicks will remain on the screen even after

Close, far

Given three ints, a b c, return true if one of b or c is "close" (differing from a by at most 1), while the other is "far", differing from both other values by 2 or more. Note: Math.abs(num) computes the absolute value of a number. closeFar(1,

Hi there

Return the number of times that the string "hi" appears anywhere in the given string. countHi('abc hi ho') // 1 countHi('ABChi hi') // 2 countHi('hihi') // 2

Array 123

Given an array of ints, return true if the array contains 1, 2, 3 somewhere (in that order). array123([1, 1, 2, 3, 1]); // true array123([1, 1, 2, 4, 1]); // false array123([1, 2, 2, 1, 5, 3]); // false

jQuery Pokemon List

Using jQuery and the Pokemon API, create a cool-looking website that uses AJAX to grab a list of all pokemon. (This can be found at http://pokeapi.co/api/v1/pokedex/1/). The site should list all of the pokemon's names in a neat, organized way. (Don't just put them

V School | Better Humans, Better Outcomes © 2026