var a=1,b=2,c=3,d=4;
var e=a>b?c>d?(a=5):(b=6):(c=7)
document.write(a,b,c,d,e);
运算结果为12747 。
a>b?c>d?(a=5):(b=6):(c=7)逻辑运算过程是怎样???求助!!