"use strict"

Using strict mode

by Muhammad Ikhsan

JavaScript

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