tastejs / todomvc-backbone-es6

Backbone TodoMVC rewritten using ES6
http://addyosmani.github.io/todomvc-backbone-es6
234 stars 46 forks source link

Never use `var`. #20

Closed domenic closed 11 years ago

domenic commented 11 years ago

Idiomatic ES6 code will never use var. I think all your uses can be replaced with const, and there is no need for let.

passy commented 11 years ago

Guidelines that are easy to follow are the best. Thanks, removed all uses of var.