Js - Functions
Simple function declaration
Let's make a simple function that console logs "Hello" whenever called.
function sayHello(){
console.log("Hello")
}
console.log(sayHello) // [Function: sayHello]
sa
javascriptfromscratch.hashnode.dev7 min read