Please enable JavaScript.
Coggle requires JavaScript to display documents.
Functions (Syntax (define function (function keyword, name function, list…
Functions
Syntax
-
-
syntax
- function Namefunction() {statement}
- var nameVariable = function() {statement}
kinds of function
-
-
Closure
Function having access to the parent scope, event after parent function has close
-