my code:
var test = "aa";
test += "ee";
alert(test);
Prints out "aaee"
How can I do the same thing, but add the string not to end, but start: Like this:
var test = "aa";
test = "ee" + test;
This is the long way, but is there somekind of shorter way like in 1st example?
What I want is that I must not write the initial variable out again in definition.
![Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee. Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee.](https://www.lemona.fr/i.sstatic.net/zFmVi.png)