function f1(){
'use strict';
console.log(this);
}
function f2(){
//'use strict';
console.log(this);
}
f1();//undefind
f2();//window

image.png
function f1(){
'use strict';
console.log(this);
}
function f2(){
//'use strict';
console.log(this);
}
f1();//undefind
f2();//window