I was surprised to run these tests and see that a singly-defined function statement was so much more performant than a singly-defined function expression:
I wasn't too surprised to see that the inner anonymous function was so slow, since I reasoned it was build on every iteration of the loop. But what is it about the difference between function expressions and statements which makes such a noticeable difference? And why is this difference so profound in Chrome?