Possible Duplicate:
jslint requires “using strict” - what does this mean?
I keep getting errors about
Line 38: return (document.getElementById(a).innerHTML=b);
Missing "use strict" statement.
here
I don't know to get rid of them or what they mean.
A prevous post suggest I user
"use strict";
and wrap all my code in a self-executing anonymous method..but this seemed a bit extrme...or maybe I just don't undersand javascript..is this what I should indeed do?