Javascript Three In this lecture we go over array methods, gain a better understanding with objects, learn the spread operator, and use nested for loops.
console.log(myCar.startsWith("S")) // false : not start with S console.log(myCar.startsWith("V")) // true : start with V console.log(myCar.endsWith("k")) // false ...