本文介绍了什么是“?:” JavaScript中的符号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现这段代码在我的旅行中研究JSON:
I found this snippet of code in my travels in researching JSON:
var array = typeof objArray != 'object' ? JSON.parse(objArray) : objArray;
我看到越来越多的?
和:
符号。我甚至不知道它叫什么来查找它!任何人都可以给我一个好的资源为此? (btw,我知道!=
意味着)。
I'm seeing more and more of the ?
and :
notation. I don't even know what it is called to look it up! Can anyone point me to a good resource for this? (btw, I know what !=
means).
推荐答案
称为。
这样:
var array = typeof objArray != 'object' ? JSON.parse(objArray) : objArray;
...与此相同:
var array;
if (typeof objArray != 'object') {
array = JSON.parse(objArray);
} else {
array = objArray;
}
这篇关于什么是“?:” JavaScript中的符号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!