js create and call function code example
Example: js create and call function
// Create a function (you decide the name) that logs out the number 42
// to the console
// Call/invoke the function
function number(){
console.log(42)
}
number()
//result = 42