const func = () => {}; // Or const func = Function();
'use strict'; delete Object.prototype; // throws a TypeError
function sum(a, a, c) { // !!! syntax error 'use strict'; return a + a + c; // wrong if this code ran }