Challenge the talent inside you, participate in Animate 2024!     Click here for details.

Functions Basic - English

12370 visits



Outline:

Functions (Basic) To keep the script from being executed when the page loads, you can put it into a function. A function will be executed by a call to the function. You may call a function from anywhere within a page. Syntax: function functionName() { code to be executed; }