wrkbrs
[JavaScript] console.log(); 에서 '+'와 ',' 의 차이 본문
+(string concatenation operator) with object will call the toString method on the object and a string will be returned. So, '' + object is equivalent to object.toString(). And toString on object returns "[object Object]".
With , the object is passed as separate argument to the log method.
+를 사용하면 toString() 메소드를 호출한 상태로 log 메소드에 인자로 전달됨.
,를 사용하면 별도의 객체로 toString() 메소드를 호출하지 않고 log 메소드의 인자로 전달됨.
'JS' 카테고리의 다른 글
[Javascript] 호이스팅(Hoisting) (0) | 2019.12.02 |
---|---|
[JavaScript] append vs appendChild 차이점 (0) | 2019.08.12 |
[Javascript] if 조건 값에 대한 true, false (0) | 2019.08.04 |
[Javascript] 쿠키(Cookie) 저장 및 삭제 예제보기 (0) | 2019.07.29 |
[Javascript] 웹브라우저가 IE(인터넷 익스플로러)인지 확인하기 (1) | 2019.07.22 |