A function with a console log output inside console.log prints undefined

后端 未结 2 1798
耶瑟儿~
耶瑟儿~ 2021-01-29 03:22
function haha(){
  console.log(\'haha\');
}

console.log(haha());

Prints:

haha
undefined

Is it because if you don\'t

2条回答
  •  走了就别回头了
    2021-01-29 04:08

    Is it because if you don't specify return in a function it will return undefined and this is what the second console.log is outputting?

    Yes, console.log() prints the arguments passed to it. Arguments passed to it in the second time is the returned value of haha() which is undefined

    First console log is the due to the console.log inside haha.

提交回复
热议问题