Prepend text to beginning of string
You could do it this way ..
var mystr = 'is my name.';
mystr = mystr.replace (/^/,'John ');
console.log(mystr);
disclaimer: http://xkcd.com/208/
var mystr = "Doe";
mystr = "John " + mystr;
Wouldn't this work for you?