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