Edit in JSFiddle

'use strict';
function foo(){
    document.write(arguments.callee); //TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
}
foo();