Everything that is not defined as a property, if I understand it correctly.
They should cause errors or failures in the console:
(function(){ 'use strict'; var x = '2'; delete x; })(); (function(){ 'use strict'; delete arguments[0]; })('2');
Erik reppen
source share