Edit in JSFiddle

function foo(){
    document.write(foo.arguments); //affiche [object Arguments]
}
foo();

function bar(){
    'use strict';
    document.write(foo.arguments); //affiche null
}
bar();