gpt4 book ai didi

javascript - 将Error对象传递给函数会使其消息不确定

转载 作者:行者123 更新时间:2023-12-03 08:38:23 24 4
gpt4 key购买 nike

当将Error对象传递给函数时,至少消息未定义,为什么?
例:

//prints "test"
console.log(new Error("test").message);
function errorPrinter(err){
console.log(err.message);
}
//prints undefined:
errorPrinter(new Error("test"));

最佳答案

在我这方面,它可以按预期工作:

  • 第一个console.log记录“测试”
  • 第二个从errorPrinter函数
  • 内部记录“测试”
  • 该函数返回undefined,因为未返回任何内容

  • See example

    关于javascript - 将Error对象传递给函数会使其消息不确定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64515189/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com