Hello, These are the study notes of the famous javascript course Namaste Javascript . I was creating this for my personal study but later thought that it might also help others. If you are confused or not getting any point do watch the course. You make also like this Namaste Javascript Study Notes -1. Functions: Function statement aka Function Declaration function a(){ console.log("a called") } Function Expression var b=function(){ console.log("b called") } The difference between these 2 types is hoisting. Function statement can be called above its declaration while in the case of function expression it should be called after declaration else it will throw an error. Anonymous Function function(){ console.log("b called") } Function without a name and it does not have its own identity as if you run it like this it will give an error. It is used where functions are used as values i.e we can assign them to a variable so that become function expressi...
This website contains interview questions for JavaScript, Nodejs, Html, Css, Datastructure, Mongodb, Angular, Aws and much more intresting articles on different technologies.