repl에서는 node.js의 글로벌 객체
소스파일에서는 module.exports
그래서 아래를 소스파일에 적고 실행했을 때랑 repl상에서 실행했을 때랑 결과가 다르게 나옴
console.log(this == function() { return this; }())
노드 repl에서는 웹브라우저에서와 마찬가지로 true
소스파일에 적고 노드로 돌릴 때는 false
repl에서는 node.js의 글로벌 객체
소스파일에서는 module.exports
그래서 아래를 소스파일에 적고 실행했을 때랑 repl상에서 실행했을 때랑 결과가 다르게 나옴
console.log(this == function() { return this; }())
노드 repl에서는 웹브라우저에서와 마찬가지로 true
소스파일에 적고 노드로 돌릴 때는 false
댓글 0