V School | Better Humans, Better Outcomes

Terminal Practice

In this exercise you will be using most common terminal commands that you'll need in order to succeed in this class. The things you can do in the terminal are virtually endless, but we just want to focus on the most commonly used and basic. Every task in this assignment

Grocery Store JS

Write a program that has a shopper object. Include at least one property with each of the following data types as values to the properties: * String * Number * Boolean * Function (called a "method" when it's inside an object like this. Check out an example for help writing your own) In addition,

JavaScript Code Conventions and Best Practices

In JavaScript, having correct syntax means you're obeying the basic rules that allow JavaScript to be interpreted correctly. If you mess up and write incorrect syntax, your program will break. Code conventions are a little different than syntax though. Conventions are like the writing/style guides of programming languages. Most

'High' on 'Potenuse' & Services

Below we have an example controller that has several methods for geometric calculations on a right triangle. app.controller('TriangleController', ['$scope', function ($scope) { // here we have a triangle object $scope.triangle = { base: undefined, height: undefined }; $scope.findArea = function () { $scope.area = 0.5 * $scope.triangle.base * $scope.triangle.height }; $scope.

Employee Records

You are to create a collection of employee's information for your company. Each employee has the following attributes: 1. Name 2. Job title 3. Salary 4. Status First, you will create an empty array named employees Next, you will create an Employee constructor with the first three attributes defined at

V School | Better Humans, Better Outcomes © 2026