我想知道JS中的以下条件运算符有什么问题。
function somehting(){
jsonVal = ['test', 'test2'];
return (jsonVal.length > 0) ? true : false;
}
它在第一个问题(
答案 0 :(得分:2)
您发布的代码运行正常,您可能在文件的其他位置出现语法错误。
return (jsonVal.length > 0) ? true : false;
也可以写成:
return jsonVal.length > 0;