What is the fastest method, to add a new value at the beginning of a string?
Advertisement
Answer
var mystr = "Doe"; mystr = "John " + mystr;
Wouldn’t this work for you?
What is the fastest method, to add a new value at the beginning of a string?
var mystr = "Doe"; mystr = "John " + mystr;
Wouldn’t this work for you?