为什么控制台内的console.log(" hello")返回undefined?

时间:2018-01-24 15:57:32

标签: javascript console

出于好奇,为什么在控制台内写console.log("hello")返回undefined?

在C中定义void函数的原因是否相同?

enter image description here

1 个答案:

答案 0 :(得分:0)

console.log只是写一个文本并返回undefined。 如果你创建一个函数,添加一个返回值,将没有未定义,它将返回带有附加值。 例如:

function writer(){
    console.log("write new line");
    return "ok";
}

如果在“写新行”之后调用writer(),则在新行中输出为“ok”。