from
Hacker News
Top
New
What does “use strict” do in JavaScript, and what is the reasoning behind it?
by
Fletch137
on 8/21/15, 3:31 PM with 1 comments
by
f00644
on 8/21/15, 3:40 PM
It's basically a safer way to write javascript code. The browser/interpreter will complain a lot more when the code runs. Similar to how a js linter would moan.