Created
May 18, 2020 23:33
-
-
Save Omkaragrawal/7865bcdcd50b6c4bfcd45b053fb518ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; // see strict mode | |
function f2() { | |
// 'use strict'; or else here | |
return this; | |
} | |
console.log(f2() === undefined) // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment