查找数组中最短的字符串-JavaScript

我们需要编写一个JavaScript函数,该函数接受一个字符串数组并返回长度最短的字符串索引。

我们将仅使用for循环并保留长度最短的字符串索引。

示例

以下是代码-

const arr = ['this', 'can', 'be', 'some', 'random', 'sentence'];
const findSmallest = arr => {
   const creds = arr.reduce((acc, val, index) => {
      let { ind, len } = acc;
      if(val.length < len){
         len = val.length;
         ind = index;
      };
      return { ind, len };
   }, {
      ind: -1,
      len: Infinity
   });
   return arr[creds['ind']];
};
console.log(findSmallest(arr));

输出结果

这将在控制台中产生以下输出-

be