Java Script Files

Must of the java script code that will be written, is going to live within files. There are important considerations to take in count while working with files

Semicolon

In Java Script semicolons tell the compiler where a given sentence of code will finish, these are some examples
var myVariable1 = "I am the variable 1";
myVariable1 = myVariable1 + " and this is some other string" ;

Printing to the console

In order to print in the console the next expression can be used

console.log("There is something to print here");