Data Types
Declare a variable called
isIslandand set its value according to your country. The variable should hold a Boolean value. Also declare a variablelanguage, but don't assign it any value yet.Log the types of
isIsland,population,countryandlanguageto the console.
let isIsland = false;
let language;
console.log(typeof isIsland);
console.log(typeof population);
console.log(typeof country);
console.log(typeof language);