Skip to Content
JavaScript Patterns
book

JavaScript Patterns

by Stoyan Stefanov
September 2010
Intermediate to advanced
236 pages
5h 47m
English
O'Reilly Media, Inc.
Content preview from JavaScript Patterns

Chapter 4. Functions

Mastering functions is an essential skill for the JavaScript programmer because the language has many uses for them. They perform a variety of tasks for which other languages may have special syntax.

In this chapter you will learn about the different ways to define a function in JavaScript, you will learn about function expressions and function declarations, and you will see how the local scope and the variable hoisting works. Then you will learn about a number of patterns that help your APIs (providing better interfaces to your functions), code initializations (with fewer globals), and performance (in other words—work avoidance).

Let’s dive into functions, starting by first reviewing and clarifying the important basics.

Background

There are two main features of the functions in JavaScript that make them special—the first is that functions are first-class objects and the second is that they provide scope.

Functions are objects that:

  • Can be created dynamically at runtime, during the execution of the program

  • Can be assigned to variables, can have their references copied to other variables, can be augmented, and, except for a few special cases, can be deleted

  • Can be passed as arguments to other functions and can also be returned by other functions

  • Can have their own properties and methods

So it could happen that a function A, being an object, has properties and methods, one of which happens to be another function B. Then B can accept a function C as an argument and, when ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Learning JavaScript Design Patterns

Learning JavaScript Design Patterns

Addy Osmani
Learning JavaScript

Learning JavaScript

Shelley Powers

Publisher Resources

ISBN: 9781449399115Errata Page