Y
Hacker News
new
|
ask
|
show
|
jobs
What does “use strict” do in JavaScript, and what is the reasoning behind it?
(
stackoverflow.com
)
2 points
by
Fletch137
3948 days ago
1 comments
f00644
3948 days ago
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.
link