Before I start, please note that this post is me trying to explain these concepts to myself so make sure I fully understood them and have these not...
For further actions, you may consider blocking this person and/or reporting abuse
Just to clarify: the intention of arrow functions is not simply to be a shorthand for a normal function; though in practice they do often get used that way. The main intent is to solve a common scoping problem.
When you use a normal function the keyword
this
is set to that function's scope; but in an arrow functionthis
is set to the parent scope. To illustrate the difference try running the following and looking at the console output:In normalFunction
this
is scoped to the function where there is nomessage
property.In arrowFunction
this
is scoped to the parent where amessage
property is defined.Strictly speaking arrow functions are usually intended to be defined in the context of a 'class'.
If you want further detail I always recommend the You don't know JS books for an in-depth and clear explanation of
this
; scope and why JS doesn't actually have classes :DOne other useful feature of template literals is how they handle white space:
Useful to know if you deliberately want to output line breaks; or if you want to break source code onto multiple lines.
Thank you Ben! As I mentioned, I am currently studying those concepts so your input is VERY helpful!
Happy to contribute. I have often posted my findings to forums precisely to help solidify concepts in my head and in case I had misunderstood anything. It's a really good learning process and has the benefit of helping others :)
One thing that I realised I didn't mention: a common use of arrow functions is in callbacks where you want to maintain the
this
context:Before arrow functions you had to use
bind
- which felt a little arcane:Akin to the ternary operator, if you just want to quickly evaluate something, and don't really care about the inverse situation, check out guards!
They're contextually similar to the ternary operator and I honestly have found more use-case for this in the past than ternaries:
Keep in mind, like the ternary operator, you should avoid complex logic in the block that is evaluated when your condition is met:
Thank you !!!
You'll need to be careful with the order you use the spread operator. If the first object contained c it would not have been replaced. Change the order and you'll get your expected result. Also the spread operator is a shallow copy.
thank you
but
In this case the output is
I guess you meant to write something like
Thank you P.
I thank you for reading!
Thank you Michele!!
I guess there is a typo at Cons?
Should be const instead of Cons.
Thanks, fixed