Prepend text to beginning of string November 7, 2022 by Tarik var mystr = "Doe"; mystr = "John " + mystr; Wouldn’t this work for you?