我想知道 JS 中的以下条件运算符有什么问题。
function somehting(){
jsonVal = ['test', 'test2'];
return (jsonVal.length > 0) ? true : false;
}
它在第一个括号上抱怨(
我想知道 JS 中的以下条件运算符有什么问题。
function somehting(){
jsonVal = ['test', 'test2'];
return (jsonVal.length > 0) ? true : false;
}
它在第一个括号上抱怨(