4.3.1. Mendeklarasikan dan menginisialisasi variabel dengan let
/*It is possible to declare and initialize a variable with a single line
of code. This is the most common way to create a variable.*/
let programmingLanguage = "JavaScript";
Tough Tortoise