Please enable JavaScript.
Coggle requires JavaScript to display documents.
Functions
*- A JavaScript function is a block of code designed to perform…
Functions
*- A JavaScript function is a block of code designed to perform a particular task
- A JavaScript function is executed when "something" calls it*
-
Syntax
-
Example
function NameFunction(parameter1, parameter2) {
code to be executed
}
-