JavaScript Functions: Difference between revisions
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
=Declaration= | =Declaration= | ||
{{External|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function}} | |||
=Function Expressions= | =Function Expressions= | ||
{{External|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function}} | {{External|https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function}} |
Revision as of 22:52, 21 January 2020
Internal
Overview
function name(parameter1, parameter2, parameter3) {
// code to be executed
}