从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