V School | Better Humans, Better Outcomes

camelCase

Write a function that takes a string input (which contains either spaces, underscores, or hyphens/dashes between words, but no combination of the two) and turn it into the camelCase version of that string.

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

Fix Teen

Given 3 int values, a b c, return their sum. However, if any of the values is a teen -- in the range 13 to 19 inclusive -- then that value counts as 0, except 15 and 16 do not count as a "teens" and should therefore still be added.

Count Code

Write a function that returns how many times the string "code" appears in array. function countCode(arr) { } //Output: // countCode(["code", "code", "cool"]) returns 2 // countCode(["code", "code", "cool", "code"]) returns 3 // countCode(["coe", "ode", "cool", "pool"]) returns 0 Step it up Write a function that returns the number of times

First Bootstrap Warmup

Using Bootstrap, create a site that uses the following bootstrap components: * Navbar * 3 Buttons of various colors & sizes * An

tag that is centered on the page * 2 Glyphicons of any kind, anywhere on the page

V School | Better Humans, Better Outcomes © 2026