gpt4 book ai didi

javascript - 我的 try/catch 代码有什么问题?

转载 作者:行者123 更新时间:2023-11-28 17:38:07 24 4
gpt4 key购买 nike

var tryThis = false
try {
if (tryThis = true) {
console.log("Why does this get printed?")
}
} catch(e) {
console.log("The error is", e)
}

我对 Javascript 的 try/catch 语句的理解肯定有问题。我对此很陌生,因此我们将不胜感激!

最佳答案

这一行:

 if (tryThis = true) {

true 分配给 tryThis,其计算结果为(如上面 @Tibrogargan 所评论的)true。相反:

 if (tryThis === true) {

您想要比较这些值。使用===

关于javascript - 我的 try/catch 代码有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48613833/

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