0
Is arrow functions performance slower than simple function?
2 Antworten
+ 2
Jerry Hobby maybe the 'javascript' tag was not here when you answered or you did not notice it?
Zhomart Suleymen no, they are not slower than regular functions...
even if there was some difference between speed, there's nothing to affirm in favor on wich (all the more that would depend on browser js engine), and this difference would be negligible ;)
+ 2
I assume you mean pointers to functions as opposed to direct function calls. No, they are the same speed. It's only a couple cpu cycles to resolve the pointer. It's an immesurable difference to performance.