我怎样才能var output
显示var one OR two OR three Or four
取决于排名顺序(最高“一”最低“四”),不包括未定义。例如
var one = //undefined
var two = "yes121";
var three = "no";
var four = "yes";
var output = // should be "yes121" as `var two` has the higest rank that is not undefined.
我的输出为 var output = 一 + 二 + 三 + 四;但出于显而易见的原因,这对于我所要求的而言是不必要的。
阐明
如果我有四个变量“一”“二”“三”和“四”,我怎样才能将输出变量设置为排名最高的变量,即“一”(最低的是“四”),不包括排名较低的变量未定义的变量和排名较高的变量。