Guest User

Untitled

a guest
Jul 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. console.log(this === module.exports)
  2.  
  3. fn()
  4. strictFn()
  5.  
  6. function fn() {
  7. console.log('in function', this === global)
  8. }
  9.  
  10. function strictFn() {
  11. 'use strict'
  12. console.log('in strict function', this === undefined)
  13. }
  14.  
  15. // info to answer questions I always get
  16. // no matter how many times I answer:
  17. // extension: Quokka
  18. // font: Dank Mono
  19. // theme: Night Owl
  20. // see kcd.im/mft for links
Add Comment
Please, Sign In to add comment