Strict mode actually does have a performance benefit in one peculiar case: if you want to extend String, Number, Boolean prototype declare function you put on it strict. This will allow you to avoid coercion of a primitive value to object wrapper which has a negative impact on performance if this call is on a very hot path.
Vyacheslav Egorov On Jul 10, 2012 9:19 AM, "Jakob Kummerow" <[email protected]> wrote: > On Tue, Jul 10, 2012 at 7:58 AM, Rohit <[email protected]> wrote: > >> Does V8's strict mode implementation offer any performance benefits? >> > > No. > > > -- > v8-users mailing list > [email protected] > http://groups.google.com/group/v8-users -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
