Skip to content
On this page

Home > @taiyuuki/utils > get_fill_arr

get_fill_arr() function

该函数创建一个指定长度的数组,其中填充了指定的值。

Signature:

typescript
declare function get_fill_arr<T>(length: number, value: T): T[];
declare function get_fill_arr<T>(length: number, value: T): T[];

Parameters

ParameterTypeDescription
lengthnumber长度参数是一个数字,指定要创建的数组的所需长度。
valueTvalue 参数是将用于填充数组的值。它可以是任何数据类型。

Returns:

T[]

函数“get_fill_arr”返回一个长度为“length”的数组,其中填充了值“value”。数组元素的类型由作为参数传递给函数的通用类型“T”确定。

Example

ts
get_fill_arr(3, 'a')
// ['a', 'a', 'a']
get_fill_arr(3, 'a')
// ['a', 'a', 'a']

Released under the MIT License.