5 lines
65 B
JavaScript
5 lines
65 B
JavaScript
|
|
// No built-in prepend
|
||
|
|
var s=", World"
|
||
|
|
s = "Hello" + s
|
||
|
|
print(s);
|