以下输出是什么?

33 阅读1分钟
   const one = (false || {} || null);
   const two = (null || false || '');
   const three = ([] || 0 || true);

答案:{} "" []