xxxxxxxxxx
28
var y = 50
var z = "goodbye"
//For each of the pieces of data below, fill them in one at a time to the typeof() function and the plain console.log function.
//Record in your worksheet what prints in your console - both the data type (the first item printed) and the data itself (the second item printed)
console.log(typeof("your data here!"))
console.log("your data here!")
//Be careful to add/remove the quotation marks based on the data you see below!
// 5 > 3
// 10
// 10.00
// "hello world"
// "10"
// 2 <= 1
// "5" + 2
// "5" + "2"
// 5 + 2
// true
// “true”
// x
// y
// z
// [5, 7, 8]
// {name: "Courtney", age: 30, school: "TYWLS", teacher: true}