gpt4 book ai didi

javascript - console.log ('true text' || 很明显吗?真的 ? 'text' : 'text1' ); logs 'text' ?

转载 作者:行者123 更新时间:2023-11-28 14:26:06 26 4
gpt4 key购买 nike

我认为它应该打印“真实文本”,因为它相当于 true

console.log('true text' || true ? 'text' : 'text1');

但是,输出是“文本”;抱歉,如果是愚蠢的...

最佳答案

您正在使用 ternary operator句法。你正在做这样的事情:

if ('true text' || true)
console.log('text');
else
console.log('text1');

关于javascript - console.log ('true text' || 很明显吗?真的 ? 'text' : 'text1' ); logs 'text' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53168043/

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