Does using the ES6 shorthand syntax add a layer of abstraction, and thus slow down the interpreter?
If you look at:
const myFunction = (myPar) => {...);
vs.
const myFunction = myPar => ...;
You would think that the second example needs to be translated back to "regular" Javascript first before it can be interpreted. If this is the case would it be best to avoid it?
.
If I made any mistakes or this question is too trivial please correct me.