服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.padEnd(string='', length=0, chars=' ')

string右侧,如果它比短length。填充字符如果超过,则会被截断length

以来

4.0.0

参数
  1. [string=''] (字符串):要填充的字符串。
  2. [length=0] (数字):填充长度。
  3. [chars=' '] (字符串):用作填充的字符串。
返回

(string): Returns the padded string.

_.padEnd('abc', 6);
// => 'abc   '
 
_.padEnd('abc', 6, '_-');
// => 'abc_-_'
 
_.padEnd('abc', 3);
// => 'abc'