# First-Class Functions

## Objectives

* Explain the difference between a *statement* and an *expression*.
* Use *function expressions* instead of *function declarations* and understand the differences.
* Understand that functions are special objects that — among many other things — can be stored in variables and other data structures, can contain key-value pairs (properties), and can be passed to and returned from other functions.
* Recognize an *IIFE* and break down what's going on with its unusual syntax: `(function () {})()`

## Introduction

Let's talk about functions. "*Ugh, again?! We've already covered functions*," you complain. Well, we've talked about functions before, but now it's time to really *talk about functions*. Bear with us, and prepare to have your mind blown.

## Statements vs. expressions

Before we dive headlong into functions, let's take a minute to talk about the fundamental building blocks of JavaScript code: *expressions* and *statements*. A *statement* is a unit of code that accomplishes something but **does not produce a value**. An *expression* is a unit of code that **produces a value**.

Many of the common keywords we've encountered form *statements*:

* Variable declarations: `const`, `let`, `var`
* Iteration: `for`, `for...in`, `for...of`, `while`
* Control flow: `if...else`, `switch`, `break`
* Debugging: `debugger`

All of those keywords are extremely useful, but none of them generate a value on their own. Take this `if` statement:

The expression inside of the `if` statement, `6 + 9`, produces a value: the number `15`. The `if` statement itself, however, produces no value. We can assign the expression `6 + 9` to a variable, but we can't assign that `if` statement to one:

```
const myVar = 6 + 9;

myVar;
// => 15

const myOtherVar = if (true) { 6 + 9; };
// ERROR: Uncaught SyntaxError: Unexpected token if
```

That `Unexpected token` error message is JavaScript telling us, "Hey, that keyword is for creating statements — stop trying to use it as though it's an expression!" A few more examples:

```
const myVar = debugger;
// ERROR: Uncaught SyntaxError: Unexpected token debugger

const myVar = const myOtherVar = 6 + 9;
// ERROR: Uncaught SyntaxError: Unexpected token const

const myVar = while (true) { 6 + 9; };
// ERROR: Uncaught SyntaxError: Unexpected token while
```

***Top Tip***: If you're struggling a bit with the difference between a statement and an expression, let's try thinking about it in a slightly different way. Statements can be used to hold data (`const`, `let`, `var`), iterate over data (`for`, `for...in`, `for...of`, `while`), control the flow of data (`if...else`, `switch`, `break`), and debug data (`debugger`). Contrast that with expressions, which **produce** data. A JavaScript program is effectively a series of statements that control, organize, and structure a series of expressions.

If you're still having some trouble with the distinction, there's an excellent blog post by Dr. Axel Rauschmayer linked at the bottom of this lesson. But what does all of this stuff about expressions and statements have to do with functions?

## Function expressions

When we first learned about functions, we learned about *function declarations*, which are a type of statement. That is, when we declare a function in the standard way, it does not produce a value:

However, the `function` keyword is adaptable. When it's the first thing in a line of code, it forms a *function declaration* that creates a new function in memory but does not immediately produce a value. When it's placed anywhere except at the start of a line, it forms a *function expression* that creates a new function **and** immediately returns that function as a value:

```
(function() {});
// => ƒ () {}
```

String literals result in new strings, array literals result in new arrays, object literals result in new objects, and function expressions result in new functions:

```
'Hello, world!'
// => "Hello, world!"

[]
// => []

{}
// => {}

(function () {})
// => ƒ () {}
```

***NOTE***: The parentheses surrounding the above anonymous function are so that the `function` keyword isn't the first thing in the line of code. Parentheses used in this way are the *grouping operator* (as in `2 * (3 + 4)`), and they don't affect the value produced by the expression:

```
'Hello, ' + 'world!';
// => "Hello, world!"
```

Parentheses around a function expression are **only required if the function keyword would otherwise be the first thing in a line of code**.

Okay, great, so we can create functions with function expressions. So what?

[![Vince McMahon is disinterested.](https://camo.githubusercontent.com/270a8f574424bccf6f5664c831dd743a1a5cf0da/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f312e676966)](https://camo.githubusercontent.com/270a8f574424bccf6f5664c831dd743a1a5cf0da/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f312e676966)

## Functions are objects

In JavaScript, functions are what's known as [*first-class citizens*](https://en.wikipedia.org/wiki/First-class_function) of the language. That means functions have the following four abilities:

* A function can be assigned to a variable.
* A function can be stored in a data structure.
* A function can be the return value of another function.
* A function can be passed as an argument to another function.

In a previous lesson, we told you to start thinking about functions as objects because, well, they are. **A JavaScript function is simply a JavaScript object with a few added goodies**. That means that **everything we can do to an object can also be done to a function**.

### Assigning functions to variables

A function expression results in a function. Just like we can store an object in a variable, we can also store a function in a variable:

```
const myObj = {};

const myFunc = function() {
	return 6 + 9;
};
```

Since the result of the function expression is a function object, that variable now contains a function. What can we do to functions? We can invoke them!

Now if we wrote:

Should we expect to see `15` ?? No, we'll see the *definiton of the function itself*. Our variables stores a reference to the function itself. We can call it whenever we want to.

Since typing `myFunc` returns a function, we can invoke that function like we invoke any other function with `()`

We can see `15` by typing:

```
myFunc();
// => 15

myFunc() + 1;
// => 16

myFunc + 1;
// => "function (){...}1"
```

#### Function expressions and hoisting

One thing to note when you're debating whether to use a function declaration or a function expression stored in a variable: **function expressions are not hoisted**. Remember, hoisting is the somewhat ill-fitting name for the process whereby the JavaScript engine stores function (and variable) declarations in memory during the compilation phase. Since they're already stored in memory by the time the execution phase starts, we can refer those 'hoisted' functions before their lexical declaration — that is, above where they're written in the code:

```
sayHi();

function sayHi() {
	console.log('Hi');
}
```

The above code works perfectly fine. Try it out in your browser's console. Contrastingly, function expressions are not hoisted. The JavaScript engine ignores them during the compilation phase, instead evaluating them during the execution phase. The following code will result in an error because variables declared with `const` aren't hoisted:

```
sayHello();

const sayHello = function() {
	console.log('Hello');
};
// ERROR: Uncaught ReferenceError: sayHello is not defined
```

Even if we use the dreaded `var`, the variable declaration will be hoisted but the assignment — where the function is instantiated and assigned to the variable — doesn't happen until the execution phase. Therefore we see a different error, this one telling us that `sayHello` is not a function:

```
sayHello();

var sayHello = function() {
	console.log('Hello');
};
// ERROR: Uncaught TypeError: sayHello is not a function
```

The `sayHello` variable is hoisted this time, but it contains `undefined` until the assignment line is reached. We can't invoke `undefined`, so `sayHello()` throws an error.

***Top Tip***: Storing a function expression in a `const`-declared variable is a good default strategy. We get all of the intelligent scoping behavior provided by `const`, allowing us much more intuitive control over when and where the function is available for use.

#### Passing by reference

Like all JavaScript objects, functions are passed *by reference*. When a new function is created, it's stored at a specific location in memory. When we assign a function expression to a variable, we're not actually storing the entire function in that variable — we're simply storing a reference to the location in memory where the function lives. If we assign the value of that first variable to a new variable, the new variable also points at the same location in memory:

```
const original = function() {
	console.log("I'm the original!");
};

const copy = original;

copy();
// LOG: I'm the original!
```

If we modify the function, we're changing the object in memory, so every reference to the function will see the modifications:

```
copy.newProperty = "I'm a new property!";

original.newProperty;
// => "I'm a new property!"
```

However, if we simply reassign the variable to a new function, it no longer points at the same location in memory:

```
let original = function() {
	console.log("I'm the original!");
};

const copy = original;

original = function() {
	console.log("I'm a new function!");
};

copy();
// LOG: I'm the original!

original();
// LOG: I'm a new function!
```

[![Vince McMahon is interested.](https://camo.githubusercontent.com/2ac1e806258193557f6b7f9b3f8df5890b231c2c/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f322e676966)](https://camo.githubusercontent.com/2ac1e806258193557f6b7f9b3f8df5890b231c2c/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f322e676966)

### Adding properties to a function

Since a function is just a special object, we can add properties to functions and then access them:

```
const myFunc = function() {
	return 6 + 9;
};

myFunc.favoriteNumber = 42;
// => 42

console.log("myFunc()'s favorite number is", myFunc.favoriteNumber);
// LOG: myFunc()'s favorite number is 42
```

[![Vince McMahon is surprised.](https://camo.githubusercontent.com/70af99595345e06ed0c7a4b1e05191519bba0649/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f332e676966)](https://camo.githubusercontent.com/70af99595345e06ed0c7a4b1e05191519bba0649/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f332e676966)

### Storing functions in an array

We can store functions as elements in an array:

```
const arrayOfObjects = [
	{ name: 'Sandi Metz' },
	{ name: 'Anita Borg' },
	{ name: 'Ada Lovelace' }
];

const arrayOfFunctions = [
	function() {
		console.log('Functions');
	},
	function() {
		console.log('are');
	},
	function() {
		console.log('so');
	},
	function() {
		console.log('cool!');
	}
];
```

When we access the various indexes in our array, we're retrieving those stored functions:

```
arrayOfFunctions[0];
// => ƒ () { console.log('Functions'); }

arrayOfFunctions[3];
// => ƒ () { console.log('cool!'); }
```

And, one more time, what's that fun thing we can do to any function? We can invoke it! How do we invoke it? With the invocation operator:

```
arrayOfFunctions[0]();
// LOG: Functions
arrayOfFunctions[1]();
// LOG: are
arrayOfFunctions[2]();
// LOG: so
arrayOfFunctions[3]();
// LOG: cool!

for (const fn of arrayOfFunctions) {
	fn();
}
// LOG: Functions
// LOG: are
// LOG: so
// LOG: cool!
```

[![Vince McMahon is intrigued.](https://camo.githubusercontent.com/e4b504142935d0c3f29fb46ac11802ee646bb84a/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f342e676966)](https://camo.githubusercontent.com/e4b504142935d0c3f29fb46ac11802ee646bb84a/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f342e676966)

### Storing functions in objects

We can also store functions as properties of an object:

```
const ada = {
	fullName: 'Ada Lovelace',
	greet: function(name) {
		console.log(`Hi there ${name}, I'm Ada Lovelace.`);
	},
	claimToFame: function() {
		console.log('I was the first computer programmer.');
	}
};

ada.fullName;
// => "Ada Lovelace"

ada.greet;
// => ƒ (name) { console.log(`Hi there ${name}, I'm Ada Lovelace.`); }

ada.greet();
// LOG: Hi there undefined, I'm Ada Lovelace.

ada.greet('Vince');
// LOG: Hi there Vince, I'm Ada Lovelace.

ada.claimToFame();
// LOG: I was the first computer programmer.
```

***NOTE***: When a function is stored in an object, we call it a *method*. It's also still a function, of course — methods are a subset of functions. We'll go much deeper into this in the lessons on object-oriented JavaScript, but keep the terminology in mind. A good rule of thumb: if you need to use the dot operator to invoke the function (as in `ada.greet()` instead of simply `greet()`), it's a method. For a common example, think of `console.log()`. We're invoking the `log()` method on the `console` object.

[![Vince McMahon is startled.](https://camo.githubusercontent.com/a50989de741c8d8d6d0ba5d10ffa27ca765a3943/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f352e676966)](https://camo.githubusercontent.com/a50989de741c8d8d6d0ba5d10ffa27ca765a3943/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f352e676966)

### Returning functions from functions

Functions can return any kind of data: strings, numbers, objects... you name it. Well, since functions are themselves merely objects, what's stopping us from returning a function from a function? Nothing! Here we create a function that assembles and returns other functions:

```
const createDivisibleFunction = function(divisor) {
	return function(num) {
		return num % divisor === 0;
	};
};
```

Then let's store the returned functions in variables so that we can reference and invoke them:

```
const divisibleBy3 = createDivisibleFunction(3);

const divisibleBy5 = createDivisibleFunction(5);

divisibleBy3;
// => ƒ (num) { return num % divisor === 0; }

divisibleBy5;
// => ƒ (num) { return num % divisor === 0; }

divisibleBy3(9);
// => true

divisibleBy3(10);
// => false

divisibleBy5(9);
// => false

divisibleBy5(10);
// => true
```

***Top Tip***: In a situation where we need a lot of similar but slightly different functions, this is a great pattern for cutting down on repetitive code. Instead of declaring 100 different functions, we can declare a single function and invoke it 100 times, passing in different arguments each time. We'll still end up with the same 100 functions, but we drastically reduced the amount of code we had to write.

#### It's turtles all the way down

There's nothing stopping us at a function that returns a function, though. How about a function that returns a function that returns a function that returns a... well, you get the idea:

```
const howManyLicks = function() {
	return function() {
		return function() {
			return function() {
				return function() {
					return function() {
						return function() {
							return function() {
								return function() {
									return function() {
										console.log(
											'does it take to get to the Tootsie Roll center of a Tootsie Pop?'
										);
									};
								};
							};
						};
					};
				};
			};
		};
	};
};
```

When we invoke the function stored inside the `howManyLicks` variable, it returns another function:

```
howManyLicks();
// => ƒ () { return function () { return function () { return function () { ...
```

One lick down, nine more to go. When we invoke the function returned by the invocation of the first function, we get **another** function:

```
howManyLicks()();
// => ƒ () { return function () { return function () { return function () { ...
```

We can continue in this manner all the way down the nested functions:

```
howManyLicks()()()()();
// => ƒ () { return function () { return function () { return function () { ...

howManyLicks()()()()()()();
// => ƒ () { return function () { return function () { console.log('does it ...
```

Until, finally, we reach the center:

```
howManyLicks()()()()()()()()();
// => ƒ () { console.log('does it take to get to the Tootsie Roll center of ...

howManyLicks()()()()()()()()()();
// LOG: does it take to get to the Tootsie Roll center of a Tootsie Pop?
```

Please don't ever do this in your actual code. The deeply nested example is simply meant to familiarize ourselves with the combination of these ideas:

1. We can invoke functions.
2. Functions can return other functions.
3. When a function returns another function, we can invoke its return value **because it's a function**!

[![Vince McMahon is excited.](https://camo.githubusercontent.com/170fbd2c4245b006d8765b03f97e5e31224c1833/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f362e676966)](https://camo.githubusercontent.com/170fbd2c4245b006d8765b03f97e5e31224c1833/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f362e676966)

### Functions passed as arguments

We already encountered this during the introduction to callback functions, but the concept is important enough to reiterate here: **functions can be passed into other functions as arguments**. Take a look at the following example:

```
function hid(fn) {
	console.log('Inside hid()');

	return fn;
}

const den = function(fn) {
	console.log('Inside den()');

	return fn;
};

function mess(cb) {
	console.log('Inside mess()');

	cb();
}

const age = function() {
	console.log('Inside age()');
};

hid(den)(mess)(age);
// LOG: Inside hid()
// LOG: Inside den()
// LOG: Inside mess()
// LOG: Inside age()
```

The final line, `hid(den)(mess)(age)`, looks super weird, but let's break it down. First, we invoke the `hid()` function, and we pass the value stored in the `den` variable in as the lone argument: `hid(den)`. An anonymous function is stored in `den`, and all `hid()` does is return the passed-in argument. If we stop there, the return value of `hid(den)` is the function stored in `den`:

```
hid(den);
// LOG: Inside hid()
// => ƒ (fn) { console.log('Inside den()'); return fn; }
```

So invoking `hid(den)` logs out the first message and then returns a function. The returned function accepts one argument, logs out a second message, and then returns the passed-in argument. What do we like to do with functions? Invoke 'em! Invoking `hid(den)()` would do the trick, but let's also pass in another function as the `fn` parameter:

```
hid(den)(mess);
// LOG: Inside hid()
// LOG: Inside den()
// => ƒ mess (cb) { console.log('Inside mess()'); cb(); }
```

And right on cue, it returns another function! This one also accepts a single argument, then logs out a message, and finally invokes the passed-in argument. If we invoke the returned function without passing an argument, we get a pretty descriptive error:

```
hid(den)(mess)();
// LOG: Inside hid()
// LOG: Inside den()
// LOG: Inside mess()
// ERROR: Uncaught TypeError: cb is not a function
//          at mess (:16:3)
//          at :1:15
```

Since we didn't pass any arguments, the `cb` parameter inside `mess()` contained `undefined`. And when the JavaScript engine hit the `cb()` line inside `mess()`, it yelled at us: "Hey, `cb` doesn't contain a function — it contains `undefined`. I can't invoke this!" When we pass in a function, such as `age()`, everything works swimmingly:

```
hid(den)(mess)(age);
// LOG: Inside hid()
// LOG: Inside den()
// LOG: Inside mess()
// LOG: Inside age()
```

[![Vince McMahon has lost it.](https://camo.githubusercontent.com/503d18c2014d6142f25fc60d150d5eabea2af0f9/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f372e676966)](https://camo.githubusercontent.com/503d18c2014d6142f25fc60d150d5eabea2af0f9/68747470733a2f2f637572726963756c756d2d636f6e74656e742e73332e616d617a6f6e6177732e636f6d2f7765622d646576656c6f706d656e742f6a732f616476616e6365642d66756e6374696f6e732f66697273742d636c6173732d66756e6374696f6e732d726561646d652f76696e63655f6d636d61686f6e5f372e676966)

## Immediately-invoked function expressions

An *immediately-invoked function expression* (usually abbreviated to *IIFE*) is exactly what it says on the tin: it's a function expression that we invoke immediately. Here's a function expression that returns a function object:

```
(function() {
	console.log("Help, I've been invoked!");
});
// => ƒ () { console.log("Help, I've been invoked!") }
```

What can we do with that returned function object? We can invoke it... immediately:

```
(function() {
	console.log("Help, I've been invoked!");
})();
// LOG: Help, I've been invoked!
```

We can pass arguments into the invocation operator just like any old function:

```
(function(name, year, claimToFame) {
	console.log(`Hi, I'm ${name}, I was born in ${year}, and I ${claimToFame}!`);
})('Ada Lovelace', 1815, 'was the first computer programmer');
// LOG: Hi, I'm Ada Lovelace, I was born in 1815, and I was the first computer programmer!

(function(name, year, claimToFame) {
	console.log(`Hi, I'm ${name}, I was born in ${year}, and I ${claimToFame}!`);
})('Grace Hopper', 1906, 'invented one of the first compilers');
// LOG: Hi, I'm Grace Hopper, I was born in 1906, and I invented one of the first compilers!
```

We won't be using IIFEs much until we introduce *closures*, but it's an ubiquitous construct that you're sure to come across when searching StackOverflow and other resources.

## Anonymous function expressions

We mentioned this in a previous lesson as well, but now we can put some more definite terms behind the concept. A function declaration **must** have a name; the JavaScript engine requires that we assign it an identifier that we can then use to refer to the function object in memory. Forgoing the name results in the following error message:

```
function () {}
// ERROR: Uncaught SyntaxError: Unexpected token (
```

The engine is saying, "Hey, I expected to see an identifier after the `function` keyword, but all I found was this silly parenthesis. That's not the start of a valid identifier!"

However, there's no such constraint on function expressions. You can add a name if you want:

```
(function namedFunctionExpression1() {});
// => ƒ namedFunctionExpression1() {}

const myFunc = function namedFunctionExpression2() {};

myFunc;
// => ƒ namedFunctionExpression2() {}
```

But it isn't necessary:

```
(function() {});
// => ƒ () {}

const myFunc = function() {};

myFunc;
// => ƒ () {}
```

Most of the time, an anonymous function expression will suffice. It's a bit easier to read and keeps our code less cluttered. That being said, there's one main benefit to naming your function expressions: better stack traces. This anonymous stack trace doesn't give us a lot to go on:

```
(function() {
	thisWillThrowAnError;
})();
// ERROR: Uncaught ReferenceError: thisWillThrowAnError is not defined
//          at :1:16
//          at :1:40
```

This one includes the function expression's name and is consequently a bit easier to locate and debug:

```
(function nowWithAName() {
	thisWillThrowAnError;
})();
// ERROR: Uncaught ReferenceError: thisWillThrowAnError is not defined
//          at nowWithAName (:1:29)
//          at :1:53
```

## Conclusion

This lesson introduces a ton of new things to think about when dealing with functions in JavaScript, but you're hopefully starting to see just how powerful functions are. We'll be discussing many of these new concepts in greater depth as we continue to explore the JavaScript language. It's important that you practice and familiarize yourself with these fundamental ideas because they are the building blocks that we'll expand on and compose into increasingly complex and powerful patterns.

## Resources

* [Wikipedia — First-class function](https://en.wikipedia.org/wiki/First-class_function)
* [StackOverflow — What is meant by 'first class object'?](https://stackoverflow.com/questions/705173/what-is-meant-by-first-class-object)
* [Helephant — Functions are first class objects in javascript (Wayback Machine)](https://web.archive.org/web/20170606141950/http://helephant.com/2008/08/19/functions-are-first-class-objects-in-javascript/)
* [2ality — Expressions versus statements in JavaScript](http://2ality.com/2012/09/expressions-vs-statements.html)
* [MDN — Statements and declarations](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements)

View [First-Class Functions](https://learn.co/lessons/js-advanced-functions-first-class-functions-readme) on Learn.co and start learning to code for free.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://certil-remy.gitbook.io/learn/javascript/functions-revised/untitled-14.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
