JavaScript减少了三元运算符

时间:2017-12-17 01:28:27

标签: javascript reduce ternary

这很愚蠢,但我很难理解这两个陈述如何产生不同的结果。

'theyyyyy wheels on q bus'.split(' ').reduce((shortest, w) => {
   return  w.length < shortest.length ? shortest = w : shortest;
 }) // 'q'

'theyyyyy wheels on q bus'.split(' ').reduce((shortest, w) => {
  return shortest.length > w.lenght ? shortest = w : shortest;
}) // 'theyyyyy'

1 个答案:

答案 0 :(得分:1)

在第二种情况下,您有w.lenght未定义。更改为w.length