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

以上是 JavaScript中str.padStart()方法的重要性是什么? 的全部内容, 来源链接: utcz.com/z/335281.html

回到顶部