wiki/content/20201112095657-javascript_string_padstart_method.md

12 lines
180 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:04:36 +00:00
date: 20201112
2024-05-06 20:40:05 +00:00
id: 49a334dd-0103-46cc-abba-af84529fae70
title: JavaScript String padStart Method
---
# Syntax
``` javascript
console.log("x".padStart(5, "ab")); // ababx
```