Fat Arrow Syntax
Last updated
Was this helpful?
Last updated
Was this helpful?
Differences & Limitations:
Let's decompose a "traditional anonymous function" down to the simplest "arrow function" step-by-step:
Note: Each step along the way is a valid "arrow function".
Copy to Clipboard
The { braces } and ( parentheses ) and "return" are required in some cases.
For example, if you have multiple arguments or no arguments, you'll need to re-introduce parentheses around the arguments:
Copy to Clipboard
Likewise, if the body requires additional lines of processing, you'll need to re-introduce braces PLUS the "return" (arrow functions do not magically guess what or when you want to "return"):
Copy to Clipboard
And finally, for named functions we treat arrow expressions like variables:
Copy to Clipboard
One param. With simple expression return is not needed:
Copy to Clipboard
Multiple params require parentheses. With simple expression return is not needed:
Copy to Clipboard
Multiline statements require body braces and return:
Copy to Clipboard
Multiple params require parentheses. Multiline statements require body braces and return:
Copy to Clipboard
To return an object literal expression requires parentheses around expression:
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
As stated previously, arrow function expressions are best suited for non-method functions. Let's see what happens when we try to use them as methods:
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
With Arrow functions, since our add
function is essentially created on the window
(global) scope, it will assume this
is the window.
Copy to Clipboard
Perhaps the greatest benefit of using Arrow functions is with DOM-level methods (setTimeout, setInterval, addEventListener) that usually required some kind of closure, call, apply or bind to ensure the function executed in the proper scope.
Traditional Example:
Copy to Clipboard
Arrow Example:
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
Arrow functions cannot be used as constructors and will throw an error when used with new
.
Copy to Clipboard
Arrow functions do not have a prototype
property.
Copy to Clipboard
Arrow functions can have either a "concise body" or the usual "block body".
In a concise body, only an expression is specified, which becomes the implicit return value. In a block body, you must use an explicit return
statement.
Copy to Clipboard
Keep in mind that returning object literals using the concise body syntax params => {object:literal}
will not work as expected.
Copy to Clipboard
This is because the code inside braces ({}) is parsed as a sequence of statements (i.e. foo
is treated like a label, not a key in an object literal).
You must wrap the object literal in parentheses:
An arrow function expression is a compact alternative to a traditional , but is limited and can't be used in all situations.
Does not have its own bindings to or , and should not be used as .
Does not have keyword.
Not suitable for , and methods, which generally rely on establishing a .
Can not be used as .
Can not use , within its body.
are supported:
are supported:
within params supported:
Arrow functions do not have their own this
. Another example involving :
The , and methods are NOT suitable for Arrow functions -- as they were designed to allow methods to execute within different scopes -- because Arrow functions establish "this" based on the scope the Arrow function is defined within.
For example , and work as expected with Traditional functions, because we establish the scope for each of the methods:
Arrow functions do not have their own . Thus, in this example, arguments
is a reference to the arguments of the enclosing scope:
In most cases, using is a good alternative to using an arguments
object.
The keyword may not be used in an arrow function's body (except when permitted within functions further nested within it). As a consequence, arrow functions cannot be used as generators.