Introduction

JavaScript is the language of the Web. This series of articles will talk about my observations learned during my decade of software development experience with JavaScript.
Before moving further let us look at the previous articles of the series:
In JavaScript, functions are the 1st class citizens of language. These are the bread and butter of JavaScript. Go in deep now:

Functions in-depth

Function keyword, followed by a name, followed by parentheses (). You can get function definition or invoke the function, ex:
  1. function myFunction(a, b) {
  2. return a * b; // Function returns the multiplication of a and b
  3. }
code
The () invokes the function,
function

Properties of function

Let us dive into some properties of the function, ex-
function

Summary

There are other useful properties also which you can look into detail. I hope you like this series. Please share your comments/feedback.
Read more articles on JavaScript