JavaScript 中 str.padStart() 方法的重要性是什么?
我们可以使用 **concat()** 方法连接两个字符串。但是,如果我们需要在第一个字符串的开头附加一个特定的字符串,那么最简单的方法是使用 **string.padStart()**。此方法不仅将第二个字符串添加到第一个字符串的开头,而且还会处理要添加的字符数量。它基本上接受两个参数,一个是 **长度**,另一个是 **第二个字符串**。**string.padStart()** 方法根据提供的长度将第二个字符串添加到第一个字符串中。
语法
string.padStart(length,"string");
它将 **长度** 作为参数,以将结果字符串限制为这么多字符。
它接受另一个字符串,将其附加到提供的字符串。
示例
<html> <body> <script> var str = "the best"; var st = "Hello" document.write(st.padStart(24," glad to meet you, ")); document.write("</br>"); document.write(str.padStart(16, "Tutorix ")); </script> </body> </html>
输出
glad to meet you, Hello Tutorix the best
当第一个字符串的大小大于提供的长度时,原始字符串将不会发生任何更改,并且原始字符串将显示为输出。
示例
<html> <body> <script> var str = "Tutorix is the best e-learning platform best"; document.write(str.padStart(16, "Tutorix ")); </script> </body> </html>
输出
Tutorix is the best e-learning platform best
广告