Functions in JavaScript
Topics to be discussed: Functions, passing functions, anonymous functions, arrow functions.
What do you mean by functions?
function print(name) {
return "Hello " + name
console.log("this will never execute")
}
We can call (invoke) this function ...
xauravww.hashnode.dev3 min read