"use strict"
Using strict mode
JavaScript
"use strict";
x = 3.18; // assignment to undeclared variable is not allowed
var y = 3;
delete y; // deleting a variable is not allowed
"use strict";
x = 3.18; // assignment to undeclared variable is not allowed
var y = 3;
delete y; // deleting a variable is not allowed