String Manipulation Methods

What is the purpose of the padStart() method in string manipulation?
const text = 'Hello, World!';
const result = text.padStart(15, '*');
Next Question (2/20)