📅  最后修改于: 2022-03-11 15:01:07.650000             🧑  作者: Mango
代码示例1
a ? b : b ? c : d
// Eg
function scale (x) {
return (x > 0) ? "positive"
: (x < 0) ? "negative"
: true
};
scale(3) //"positive"