declare a javascript function code example
Example: function declaration javascript
function hello1() {
return "Hello simple function";
}
hello2 = function() {
return "Hello functino expression";
}
hello3 = (function() {
return "Hello IMMEDIATELY INVOKED FUNCTION EXPRESSIONS (llFE)";
}())
hello4 = (name) => { return ("Hello " + name); }
hello5 = (name) => { return (`Hello new ${name}`) }
document.getElementById("arrow").innerHTML = hello4("arrow function");
document.write("<br>" + hello5("arrow function"));