we used typeof
to
figure out what type a variable in JavaScript is
// complete these definitions so that they will have
// the appropriate typesvar anObj = { job: "I'm an object!" };
var aNumber = 42;
var aString = "I'm a string!";
console.log( typeof anObj ); // should print "object"
console.log( typeof aNumber ); // should print "number"
console.log( typeof aString ); // should print "string"