V School | Better Humans, Better Outcomes

No way a

Make a function that takes a string and returns that string with all instances of the letter 'a' removed. Must handle lowercase and uppercase letters. function removeA(str) { // Your code here } console.log(removeA("Aye matey!")) // displays "ye mtey!" Hint: String methods

Noding Bat

About Noding Bat is a copy of the Coding Bat programming problems ported over to JavaScript. Going through many practice problems is a great way to solidify thinking like a programmer. Exercise Go ahead and make an account on Noding Bat and start working on some of the first problems.

Beautify

Beautify is IDE extension that reformats HTML, CSS, JavaScript and other languages to meet code styling conventions. This is useful as it makes your code more readable, easier to debug, and to collaborate with. Links to install instructions can be found below. Atom Extension Manager Beautify Package VS code Extension

Replace All The Things

Note you must have finished Newsies before this exercise Go through your Newsies exercise and replace your divs with semantic tags. Examples of semantic tags include

Find a full list here.

Basic Array

Make an array of that has four or more strings and print each to the console without using a for loop. Reminder: An array is a special variable, which can hold more than one value at a time. var arrayName = ["item1", "item2", ...]; To access items in the array, you can

V School | Better Humans, Better Outcomes © 2026