📜  collect.js pad() 方法

📅  最后修改于: 2022-05-13 01:56:21.536000             🧑  作者: Mango

collect.js pad() 方法

pad() 方法用于用给定的元素填充数组,直到数组的大小被填满。我们使用负号填充左侧元素,使用正号填充右侧元素。如果数组大小已满,则不会执行填充。

句法:

collect(array).pad(size, value)

参数: collect() 方法采用一个参数,该参数转换为集合,然后将 pad() 方法应用于它。 pad() 方法有两个参数,第一个是大小,另一个是值。

返回值:此方法返回一个带有填充元素的数组列表。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的示例说明了 collect.js 中的 pad() 方法:

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js');
  
// Creating collection object
const collection = collect(['Geeks', 'GFG', 'GeeksforGeeks']);
  
// Function call
const pad_val = collection.pad(5, 'Welcome');
  
// Printing values
console.log(pad_val.all());


Javascript
// Requiring the module
const collect = require('collect.js');
  
// Creating collection object
const collection = collect(['Geeks', 'GFG', 'GeeksforGeeks']);
  
// Function call
const pad_val = collection.pad(-5, 'Welcome');
  
// Printing values
console.log(pad_val.all());


使用以下命令运行index.js文件:

node index.js

输出:

[ 'Geeks', 'GFG', 'GeeksforGeeks', { G: 'Welcome' }, { G: 'Welcome' } ]

示例 2:文件名:index.js

Javascript

// Requiring the module
const collect = require('collect.js');
  
// Creating collection object
const collection = collect(['Geeks', 'GFG', 'GeeksforGeeks']);
  
// Function call
const pad_val = collection.pad(-5, 'Welcome');
  
// Printing values
console.log(pad_val.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 'Welcome', 'Welcome', 'Geeks', 'GFG', 'GeeksforGeeks' ]