1.

What is JavaScript function syntax?​

Answer»

A JavaScript function is DEFINED with the function KEYWORD, followed by a NAME, followed by parentheses ().Function names can contain letters, digits, underscores, and DOLLAR signs (same rules as variables).The parentheses may include parameter names separated by commas: (parameter1, parameter2, ...)The code to be EXECUTED, by the function, is placed inside curly brackets: {}



Discussion

No Comment Found