[JavaScript] Introduction to Objects II
Objects, Objects Everywhere// 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 ...