JavaScript Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
<syntaxhighlight lang='javascript'> | <syntaxhighlight lang='javascript'> | ||
function name(parameter1, parameter2, parameter3) { | |||
// code to be executed | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 21:45, 29 March 2019
Internal
Subjects
Organizatorium
Functions
function name(parameter1, parameter2, parameter3) {
// code to be executed
}