[JavaScript] Defining Functions
var hello = function () { // Print hello on the console. console.log("i am saying hello");};hello();hello();var hi = function () { console.log("hi");};hi();var myFirstFunction = function() { console.log("yourName");}myFirstFunction();var fullNa...