console.log('Value is ' + (val != '0') ? 'define' : 'undefine');
第一题:
答案:define
解析:加号优先级高于 三目运算。低于括号。 所以括号中无论真假 加上前边的字符串都为 TRUE 三目运算为TRUE是 输出 define