从JavaScript中的字符串构建数组

我们必须编写一个函数来创建一个数组,该数组的元素从字符串开始重复直到达到限制。

假设有一个字符串“ aba”和一个限制5。

例如string =“ string”并且limit = 8将给出新的数组

const arr = ["s","t","r","i","n",“g”,“s”,”t”]

示例

让我们为该函数编写代码-

const string = 'Hello';

const limit = 15;

const createStringArray = (string, limit) => {

   const arr = [];

   for(let i = 0; i < limit; i++){

      const index = i % string.length;

      arr.push(string[index]);

   };

   return arr;

};

console.log(createStringArray(string, limit));

console.log(createStringArray('California', 5));

console.log(createStringArray('California', 25));

输出结果

控制台中的输出-

[

   'H', 'e', 'l', 'l',

   'o', 'H', 'e', 'l',

   'l', 'o', 'H', 'e',

   'l', 'l', 'o'

]

[ 'C', 'a', 'l', 'i', 'f' ]

[

   'C', 'a', 'l', 'i', 'f', 'o',

   'r', 'n', 'i', 'a', 'C', 'a',

   'l', 'i', 'f', 'o', 'r', 'n',

   'i', 'a', 'C', 'a', 'l', 'i',

   'f'

]

以上是 从JavaScript中的字符串构建数组 的全部内容, 来源链接: utcz.com/z/317104.html

回到顶部