gpt4 book ai didi

javascript - 为什么 var组合 = null + ""有一个值?

转载 作者:行者123 更新时间:2023-11-28 13:51:17 25 4
gpt4 key购买 nike

可能是一个困惑的 javascript 菜鸟提出的一个非常基本的问题...

为什么要这么做

var hasthisvalue = null;
if (hasthisvalue)
print("hasthisvalue hs value");

var hasthatvalue = "";
if (hasthatvalue)
print("hasthatvalue has value");

不打印任何内容,但如果我将这两者结合起来

var combined = "hasthisvalue" + "hasthatvalue";
if (combined)
print ("combined has value");

是吗?

或更直接地说:

var combined = null + "";
if (combined)
print ("combined has value");

如果我只添加两个没有值的变量,为什么“combined”会有值?我错过了什么?

最佳答案

当您单独比较它们时,每个都在 if 检查中转换为 false。当您组合它们时,null 变成字符串 "null",因此它们的串联是字符串 "null",它不会转换为

关于javascript - 为什么 var组合 = null + ""有一个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10773778/

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