Lodash教程

Lodash padEnd method

语法

_.padEnd([string=''], [length=0], [chars=' '])
Pads string on the right side if it's shorter than length. Padding characters are truncated if they exceed 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 = _.padEnd('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