``` function traditionalFn(){ console.log(this) } traditionalFn(); ``` or ``` var aFunction=()=> console.log(this) aFunction(); ``` does not print window in the console.