Is requestAnimationFrame(() => this.render()) better than requestAnimationFrame(render) ?

I always find the code like this

    requestAnimationFrame(() => this.render()) 

I didn’t see the difference from it and the code

    requestAnimationFrame(this.render) 

And the second way may even be faster, could someone tell me is there any good point to use the first way ?