/
Javascript strings are immutable
Javascript strings are immutable
This means they never change. Most of the time it doesn’t matter.
function CONCATappendSlow(N){
console.time();
var H ='';
for (var i=0; i < N; i++){
H+='The quick' + " ";
}
console.timeEnd();
return H;
}
And this is a faster way of doing it.
function CONCATappendFast(N){
console.time();
var H = new Array(N);
for (var i=0; i < N; i++){
H[i] ='The quick';
}
console.timeEnd();
console.time();
var Result = H.join(' ');
console.timeEnd();
return Result;
}
, multiple selections available,
Related content
Javascript Strings
Javascript Strings
More like this
Javascript is a dynamic language
Javascript is a dynamic language
More like this
Javascript Closure
Javascript Closure
More like this
How const can be helpful in modern Javascript
How const can be helpful in modern Javascript
More like this
How can do some funky thing with strings that I don't know?
How can do some funky thing with strings that I don't know?
More like this
Using an array to concatenate a long string
Using an array to concatenate a long string
More like this