V School | Better Humans, Better Outcomes

ES6 Basics

This post is not designed to be all digested at once. Take it a subject or two at a time. Use the Table of Contents to find what you need! Table of Contents Const and Let Rest and Spread Operator Default Parameters Template Literals (Template Strings) Object Shorthand Destructuring Import/

React Meme Creator

Make a meme creator using React. Your user should be presented with 3 input boxes: 1. Image URL (for the meme image) 2. Upper Text (Text to show up on the top of the image) 3. Lower Text (Text to show up on the bottom of the image) In the

Array Methods Continued

This article will go over 7 array methods. * .forEach() * .map() * .filter() * .find() * .some() * .every() * .reduce() These methods work in much the same way. Once you learn one, the rest will become much easier to learn. They are all used to prevent us from using for loops. .forEach Given the array:

Deploying Static and Node Applications with Zeit Now

This lesson has been adapted from Mykola Bilokonsky Documentation can be found HERE About Zeit Now Up until now you've been running your projects from your own server on localhost. Now is a node package that lets you deploy static websites and node applications to a remote server, which allows

Double Sum

Warm-Up Write a function that returns the sum of two integers or if they are the same, returns double their sum. doubleSum(1,4); //returns 5 doubleSum(3,3); //returns 12

V School | Better Humans, Better Outcomes © 2026