The :first pseudo selector and first() can do the same thing.
As for performance, here is a live example of performance difference between jQuery first(),:first, eq(0) and :nth(0).
http://jsperf.com/jquery-first-vs-first-selector, Please check it out!
Hope this will help.