JS Fügen Sie String zum Beginn der Zeichenfolge hinzu
var mystr = 'is my name.';
mystr = mystr.replace (/^/,'John ');
console.log(mystr);
Run code snippet
Glamorous Grasshopper