001/*
002 A multi line comment
003 can be written in this way
004*/
005
006
007
008console.log('Hello World');
009
010let numResult, stringResult, booleanResult;
011
012
013let num1 = 20;
014
015
016let num2 = 5;
017
018
019numResult = num1 + num2;
020console.log("The result of num1 + num2 is: " + numResult);
021
022
023let isOverdrawn = true;
024console.log(isOverdrawn);
025isOverdrawn = false;
026let string1 = "true";
027let string2 = "13"
028const pi = 3.14;
029
030num1 = 15;
031
032numResult = num1 + num2;
033console.log("The result of num1 + num2 is: " + numResult);
034num2 = "twenty";
035