Previous PageNext Page

7.5.8 function Statement

Declares a new function.
 

Syntax

function functionname([argument1 [, argument2 [, ...argumentn]]])

{

statements

}

functionname
The name of the function.
argument1...argumentn
An optional, comma-separated list of arguments the function understands.
statements
One or more JScript statements.
Remarks
 
Use the function statement to declare a function for later use. The code contained in statements is not executed until the function is called from elsewhere in the script.
 

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page