05. Primitive Types πŸ‘©β€πŸŽ“πŸ‘¨β€πŸŽ“

var one = 64;
var two = "656302";
var three = false;
var four = 64.55;
var five = "Howdy!";
var six;

// Insert comments to explain what each console log below will log to the console
console.log(typeof one); 
console.log(typeof two); 
console.log(typeof three); 
console.log(typeof four); 
console.log(typeof five);
console.log(typeof six);

four = "Hello!";
five = false;
six = 23;

// Insert comments to explain what each console log below will log to the console
console.log(typeof four);
console.log(typeof five);
console.log(typeof six);

βœ… Solutions

Solutions Click Here