CHAPTER 8

image

Functions

Functions are reusable code blocks that will only execute when called. They allow developers to divide their scripts into smaller parts that are easier to understand and reuse.

Defining Functions

To create a function the function keyword is used followed by a name, a set of parentheses, and a code block. The naming convention for functions is the same as for variables – to use a descriptive name with each word initially capitalized, except for the first one.

function myFunc(){  document.write("Hello World");}

This function simply displays a text string to the web document. A function code block can contain any JavaScript code, ...

Get JavaScript Quick Syntax Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.