4.1. Nilai dan Jenis Data

console.log(typeof "Hello, World!");
console.log(typeof 17);
console.log(typeof 3.14);

//string
//number
//number

/*If you are not sure what data type a value falls into, precede 
the value with typeof./*
Tough Tortoise