7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
let s = "Hello";
|
|
console.log(
|
|
s.concat(" there!")
|
|
.toUpperCase()
|
|
.replace("THERE", "you")
|
|
.concat(" You're amazing!")
|
|
); |