156
2016-12-23 03:44:14
2
console.log에 toString이라는 함수를 그대로 넘겼냐, toString이라는 함수를 실행해서 넘겼냐, 그차이에요.
console.log( abc.toString );
-> abc의 toString가 뭔지를 출력해.
-> abc의 toString는... 함수!!!
-> 그럼 [Function: toString]를 출력해야겠다~
console.log( abc.toString() );
-> abc의 toString()가 뭔지 출력해.
-> abc의 toString에 ()가 붙어있니까 변수 없이 실행해봐야겠네.
-> 실행해보니까... 어이쿠- ["a", "b", "c"]를 토해냈어! 이거를 출력해야겠다~