DEV Community

Cover image for why you shouldn't use arrow functions?
Blessing Hirwa
Blessing Hirwa

Posted on

why you shouldn't use arrow functions?

Who doesnโ€™t love the simplicity of arrow functions? Introduced as part of the ECMAScript 6, arrow functions went viral. The new syntax to declare functions saves us time and enhancing clarity in many situations, removing all the distracting, unnecessary, chunk that usually came with declaring a JS function ๐Ÿ˜ซ. In this article we'll talk more about when we should and not use arrow functions, so hold tight and continue with me until the end to avoid confusion.

Regular funciton declaration

function holidays(){ 
return "Merry Christmas and a happy new year ๐Ÿ˜€!"
}
Enter fullscreen mode Exit fullscreen mode
const result = list.map(function(item) { return item; })
Enter fullscreen mode Exit fullscreen mode

With Es6 functions

const holidays = () => "Merry Christmas and a happy new year ๐Ÿ˜€!"
Enter fullscreen mode Exit fullscreen mode
const result = list.map((item) => item)
Enter fullscreen mode Exit fullscreen mode

Isn't it lovely? In any case, we have to be cautious as the difference between them is not only just syntax, so we can't use it in every situation.

So when is using arrow functions not advisable ๐Ÿ™„?

1. Object methods

const post= {
likes: 0,
like: () => {
this.likes++;
}
}
Enter fullscreen mode Exit fullscreen mode

In the example above, it would be instinctive to think that every time we call post.like() the property post.likes would increase by one, initially from 0 to 1.
Unfortunately, this is not the case, the value of likes will sadly remain the same and this post will never get to be popular.

Invoking the method like() would simply attempt to increment the property likes on the global window object.

However, if instead, we use the traditional syntax:

const post = {
likes: 0,
like: function() {
this.likes++;
}
}
Enter fullscreen mode Exit fullscreen mode

2. Object Prototype

Similar to the example above, object prototypes will evaluate this as the global window object, like in the following example:

class Post {
constructor(title) {
this.title = title;
this.shared = false;
}
};

Post.prototype.share = () => {
return this.shared = true;
};
Enter fullscreen mode Exit fullscreen mode

Similarly, in the previous case, the method share() wonโ€™t work due to the enclosed scope to the window object. And again the solution will look familiar:

Post.prototype.share2 = function() { return this.shared = true; };
Enter fullscreen mode Exit fullscreen mode

In addition to what we saw above here are some limitations of arrow functions:

  • Does not have its own binding to this or super
  • Should not be used as an event handler, a method of an object, a method of a class, or a prototype method, or when you have a function that uses the arguments object.
  • Not suitable for call, apply and bind methods, which generally rely on establishing a scope
  • Cannot be used as a constructor
  • Cannot use yield within its body

Taken from MDN

To be continued...

Thank you for taking your time and read this post, hope you enjoyed it. Let me know what you think in the comments and don't forget to connect with me or hit me up on Twitter, Instagram and Linkedin. Once again, Merry Christmas and a happy new year of 2021 ๐ŸŒฒ.

Top comments (17)

Collapse
ย 
saba1121 profile image
Saba1121 โ€ข

const holidays = () => return "Merry Christmas and a happy new year ๐Ÿ˜€!"

In this example you dont really need word "return". Arrow functions which are one line and dont use curly braces automatically return result. So it should be like this:

const holidays = () => "Merry Christmas and a happy new year ๐Ÿ˜€!"

Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

I wanted to be more clear. But yours also works well.

Collapse
ย 
lucgauer profile image
Lucas Gauer โ€ข โ€ข Edited

Usage of return explicitly into a single statement arrow function (without the curly brackets), is actually a syntax error ๐Ÿ™.

Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

I also changed it lol.

Collapse
ย 
chrisburkssn profile image
Chris Burks โ€ข

Thanks for the info. Looking for the continuation.
Small note: I think there is a typo for your first example Object methods. You mention "the property post.claps would increase by one". However, there is not property "claps" in the code example. There is "likes" though.

At any rate, good stuff here and thanks again for posting.

Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

ohhh I didn't catch that. Thanks for correcting

Collapse
ย 
calinbaenen profile image
Calin Baenen โ€ข

Actually, you said arrow functions don't have arguments.
That is false.

const add = (...nums) => {let i = 0; for(let num of nums) i += num; return i;}
Enter fullscreen mode Exit fullscreen mode
Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

You can read it from here:
developer.mozilla.org/en-US/docs/W...

Collapse
ย 
calinbaenen profile image
Calin Baenen โ€ข

Oh, you meant the keyword (you should probably specify that in the post).

Thread Thread
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

Yeah, I just added it now.

Collapse
ย 
tonyscruze profile image
TonySCruze โ€ข

Great article. Thanks ๐Ÿ™‚

Collapse
ย 
matjones profile image
Mat Jones โ€ข

As far as your first point, that's literally just syntax sugar/shorthand for a regular function declaration.

Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

That's a good one.

Collapse
ย 
lyrod profile image
Lyrod โ€ข

For object methods, you should use the "like() {}" syntax

Collapse
ย 
oreste profile image
Oreste Abizera โ€ข

cool stuff! Actually, I didn't know this ๐Ÿ˜(before reading this post)

Collapse
ย 
blessinghirwa profile image
Blessing Hirwa โ€ข

Glad it helped ๐Ÿ˜

Collapse
ย 
hasnaindev profile image
Muhammad Hasnain โ€ข

Please replace "why" with "when" in your post as it is very misleading, thanks.