V School | Better Humans, Better Outcomes

ES6 Practice - Let, Const, Arrow Functions, Default Arguments, Template Literals

let and const Replace all the vars with let and const. Alter the code however necessary to make sure this continues to work (so the pet's name isn't "John", but instead "spot" is returned). You only need to delete var and insert let and const John is the pet owner,

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

Intro to Flux

Introduction To understand Flux we first need to understand where Flux came from. Flux evolved from "MVC" (short for Model, View, Controller), which is a design pattern used to make web-based interfaces. In short, organizing your code is hard, and MVC is one very popular philosophy on how to do

V School | Better Humans, Better Outcomes © 2026