Yes, I agree! ES6 is looking pretty exciting.
Best-Guess Projections
Supposedly, the draft is intended to be feature-complete by the end of the year. And the spec is projected to be finalized by the end of 2013. If all goes well we'll see it in all A-grade browsers in 2014.
Many of the features are already available on Firefox and Chrome (on Chrome you have to turn on experimental JavaScript in order to access it). It'll probably take IE the longest, as I haven't heard anything about their plans to implement it yet, but we'll see.
Clearly, it'll be some years after that before a significant percentage of the people on the internet are using an up-to-date browser. If you're in the position to require A-grade browsers, you'll be able to make the transition more quickly. But there are some tools that can help start making the transition now:
Using ES6 Features Now
I've developed a pretty extensive ES6 shim for ES5 compliant browsers, available here: https://github.com/Nathan-Wall/inHarmony
It includes shims for Symbols, WeakMaps, Maps, Sets, and a host of new Math, String, and Array functions. It's being developed along with the drafts, and it's pretty close to up-to-date with the most recent ES6 draft. It's meant to be a placeholder until ES6 is ready so that I can start writing ES6 code now, code which will work when browsers start supporting ES6 natively.
Unfortunately there's no way to simply "shim" in the syntactic changes. For that you either need an interpreter, compiler, or just need to wait on the browsers.
For an interpreter, Brandon Benvie has been developing a ES6 virtual machine which can run in ES3 browsers. If you want to go the compiler route, you can check out Google Traceur.