Tag: Notes
Javascript Const Note
by z3n on Apr.13, 2010, under Notes
In order to keep my code clean i wrote a javascript with const variable declarations, those were constants anyway and there were no reason to declare them as var, right?
Wrong, big mistake, IE don’t support consts right, turns out it gives javascripts errors (on the wrong position, of course), i will not even go deep into this, cuz it will just turn into more shit, so i’m just replacing const per var;
So, note to self, never use consts on javascript.