JavaScript Revision Part 02
Function
Function are first-class citizens in JavaScript which means, they are like objects and can be passed and returned like other objects
Declaring a Simple function
function function_name(parameter){
body of function;
}
functions are not e...
jeevanhenrydsouza.hashnode.dev2 min read