I like my love with a budget, I like my hugs with a scent
You smell like light, gas, water, electricity, rent
Tomorrow @ 6:30pm ET!
Thursday Mar. 31st
Thursday 6:30pm ET
Friday 6pm ET on Discord!
Saturday All Day
Sunday - 1pm ET
Portfolio / Resume Review Part 1
Tuesday 6:30pm ET
if(condition is true) {
  //Do this cool stuff
}else if(condition is true){
  //Do this other cool stuff
}else{
  //Default cool stuff
}if (name === "Leon" && status === "Ballin"){
 //Wink at camera
}if (day === "Saturday" || day === "Sunday"){
  //It is the weekend
}function name(parameters){
  //body
}
//call
name(arguments)function yell(word){
  alert(word)
}
yell("HELLO")for (let i = 1; i < 5; i++) {
  console.log(i)
}let newArr = new Array()
let newArr = []newArr = ['Zebra',true,21]
newArr = ['Zebra',,true,21]
console.log( newArr[0] )  //Zebra
console.log( newArr[1] )  //undefined
console.log( newArr[2] )  //true
console.log( newArr[3] )  //21newArr = ['Zebra',,true,21]
newArr[1] = 'Bob'
console.log( newArr )  
// ['Zebra','Bob',true,21]
console.log( newArr.length ) //4let bestColors = ['green','blue','yellow','black']
for(let i = 0; i < bestColors.length;i++){
  console.log( bestColors[i] )
}let bestColors = ['green','blue','yellow','black']
bestColors.forEach((x,i)=> console.log(x))
let stopwatch = {}
stopwatch.currentTime = 12
stopwatch.tellTime = function(time){
  console.log(`The current time is ${time}.`)
}
stopwatch.tellTime(stopwatch.currentTime)How much money you got? How many problems you got? How many people done doubted you? Left you out to rot?
function MakeCar(carMake,carModel,carColor,numOfDoors){
  this.make = carMake
  this.model = carModel
  this.color = carColor
  this.doors = numOfDoors
  this.honk = function(){
    alert('BEEP BEEP FUCKER')
  }
  this.lock = function(){
    alert(`Locked ${this.doors} doors!`)
  }
}
let hondaCivic = new MakeCar('Honda','Civic','Silver', 4)
let teslaRoadster = new MakeCar('Tesla','Roadster', 'Red', 2)let teslaRoadster = new MakeCar('Tesla','Roadster', 'Red', 2)
console.log( teslaRoadster.bluetooth )  //undefined
MakeCar.prototype.bluetooth = true
console.log( teslaRoadster.bluetooth ) //true let teslaRoadster = new MakeCar('Tesla','Roadster', 'Red', 2)
console.log( teslaRoadster.doors.toString() )  // "2" not 2
class MakeCar{
  constructor(carMake,carModel,carColor,numOfDoors){
    this.make = carMake
    this.model = carModel
    this.color = carColor
    this.doors = numOfDoors
  }
  honk(){
    alert('BEEP BEEP FUCKER')
  }
  lock(){
    alert(`Locked ${this.doors} doors!`)
  }
}
let hondaCivic = new MakeCar('Honda','Civic','Silver', 4)
let teslaRoadster = new MakeCar('Tesla','Roadster', 'Red', 2)Classes are like templates for objects!
fetch("https://dog.ceo/api/breeds/image/random")
    .then(res => res.json()) // parse response as JSON
    .then(data => {
      console.log(data)
    })
    .catch(err => {
        console.log(`error ${err}`)
    });
fetch(url)
    .then(res => res.json()) // parse response as JSON
    .then(data => {
      console.log(data)
    })
    .catch(err => {
        console.log(`error ${err}`)
    });
const url = 'https://www.thecocktaildb.com/api/json/v1/1/search.php?s=margarita'
Read: Pillars of OOP - https://medium.com/@hamzzza.ahmed95/four-pillars-of-object-oriented-programming-oop-e8d7822aa219
Watch / Do: https://youtu.be/PFmuCDHHpwk
Watch: https://youtu.be/0fKg7e37bQE
Do: Four Codewars Fundamentals