Public vals
57
willthereader
functionExercise
// make a function, a variable containing a function, block body arrow function,
Script
willthereader
objectExercise
// make an object that has a property for dot and bracket notation.
Script
willthereader
arrayExercise
// use push, pop, unshift, shift, slice, indexOf, includes, length, map,
Script
willthereader
typeConversionExercise
// use Number(), parseInt(), parseFloat(), String(), toString(), and Boolean()
Script
willthereader
numberExercises
// do mathematical operation for adding, subtracting, multiplying, and dividing
Script
willthereader
variableExercise
// Create a program that tracks someone's daily steps. You'll need to create a variable that starts at zero steps for the morning. Throughout the day, you'll need to update this value several times as more steps are taken. You'll also need to store the daily step goal, which should never change from its initial value of 10000 steps. Your program should include at least three step updates and attempt one incorrect operation that JavaScript should prevent.
Script