reading-notes

Class 6: Reading Notes & Assignment Summary

Assignments

JavaScript Objects Basics

const dog = {
  name: 'Spot',
  age: 2,
  color: 'white with black spots',
  humanAge: function (){
    console.log(`${this.name} is ${this.age*7} in human years`);
  }
}

Introduction to the DOM

In Class Notes