gpt4 book ai didi

javascript - 关于从输出中隐藏文本字符串的代码的几个问题

转载 作者:行者123 更新时间:2023-11-30 20:34:31 25 4
gpt4 key购买 nike

你好,我开始学习 JavaScript,昨天我请求帮助我从输出中隐藏数组的 NaN 字符串。有些人帮助了我.. 但我有新的问题。

Here the link to answers

  1. 对于这段代码,

    if (typeof(degFahren[loopCounter]) === 'string') 继续;

里面发生了什么?如我所见,如果 degFahren 等于文本字符串,脚本将继续,但它会以另一种方式工作并处理输出数字。

  1. 对于这段代码

    if (parseInt(degFahren[loopCounter]) != "NaN")

它根本不隐藏 NaN 字符串。显示数组中的所有字符串。为什么?

这里是无效的代码块

for (loopCounter = 0; loopCounter <=6; loopCounter++){   

if (parseInt(degFahren[loopCounter]) != "NaN")

degCent[loopCounter] = convertToCentigrade(degFahren[loopCounter]);
document.write ("Value " + loopCounter + " was " + degFahren[loopCounter] + " degrees Fahrenheit");
document.write (" which is " + degCent[loopCounter] + " degrees centigrade<br />");

}

最佳答案

您的假设是正确的,但代码失败是因为您漏掉了大括号。您应该在 if 条件

之后添加大括号
for (loopCounter = 0; loopCounter <=6; loopCounter++){   

if (parseInt(degFahren[loopCounter]) != "NaN") {

degCent[loopCounter] = convertToCentigrade(degFahren[loopCounter]);
document.write ("Value " + loopCounter + " was " + degFahren[loopCounter] + " degrees Fahrenheit");
document.write (" which is " + degCent[loopCounter] + " degrees centigrade<br />");
}

}

关于javascript - 关于从输出中隐藏文本字符串的代码的几个问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49973195/

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