Lodash教程

Lodash pad method

语法

_.pad([string=''], [length=0], [chars=' '])
Pads string on the left and right sides if it's shorter than length. Padding characters are truncated if they can't be evenly divided by length.

参数

[string=''] (string) − The string to pad. [length=0] (number) − The padding length. [chars=' '] (string) − The string used as padding.

输出

(string) − Returns the padded string.

实例

var _ = require('lodash');
var result = _.pad('foo', 8, '_');
console.log(result);
Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

输出

__foo___
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4