OiWorld / MindTheWord

An extension for Google Chrome that helps people learn new languages while they browse the web.
43 stars 47 forks source link

Codestyle #67

Closed Stormteller closed 8 years ago

Stormteller commented 8 years ago

35

Changed: obj['prop'] -> obj.prop, Global variables avoided: 'var' before iterators variables in cycles ( for (i in array) -> for(var i in array) ), Unstrict comparisons changed to strict comparisons ( == -> ===)

ceilican commented 8 years ago

Thanks!