... depends on what you want to do with your JavaScript
Significantly faster JavaScript will make available applications as safe web apps with functionality that was previously restricted to desktop applications or to plugins that you have to trust with your security. I'm all for it.
I do however have one concern, and that is that the emphasis is entirely on speed. Rich applications doing client-side manipulation of large volumes of data (e.g. pictures) take up memory. The memory footprint of data in the different JavaScript implementations is vastly different. Opera may be the fastest at the moment (I haven't checked in the last month) but an array of integers takes up more than twice the space of the corresponding array in FF4. The most appalling offender in this regard was IE (all version up to 8) with over 50 bytes per number.
Is this a concern either for implementors or web app developers, or am I alone?