3

I'm really interested in finding out about ES6 Template Strings and have been doing a little bit of reading on the feature.

However now that Chrome Canary does not support it (although maybe I'm wrong about that!) is there anywhere/anything I can use to try out this new functionality? Any browser beta around that does?

I've already enabled Experimental Javascript Features inside chrome://flags

Bergi
  • 630,263
  • 148
  • 957
  • 1,375
CodingIntrigue
  • 75,930
  • 30
  • 170
  • 176

3 Answers3

4

It's only supported in Traceur at the moment.

You can play with it in their REPL.

es6fiddle.net doesn't seem to support it yet, but probably will soon.

Mozilla is working on it so expect to see it in nightly builds soon as well.

kangax
  • 38,898
  • 13
  • 99
  • 135
  • 1
    Template strings are officially supported in Firefox since the release of version 34! https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/template_strings – CodeManX Jan 08 '15 at 14:32
1

It's Supported in

  1. Edge
  2. Firefox
  3. Chrome/Opera
  4. Webkit

Missing in safari ;( though

cough safari is the new ie cough

source

aWebDeveloper
  • 36,687
  • 39
  • 170
  • 242
0

Regarding template strings and support for ES6 features

I would also use traceur to play around with most ES6 features, but have a look at this ES6 compatibility table, it's invaluable when you want to find out which platforms/transpilers support which features.

For anyone else landing on this question, go and check out tagtree's videos onn ES6 features.

To see template strings, arrow syntax and desctructuring, have a look at this free tagtree tutorial screencast, no registration is required.

hendrikswan
  • 2,263
  • 1
  • 20
  • 25