2021-12-02 21:21:10 +01:00

7 lines
148 B
JavaScript

let s = "Hello";
console.log(
s.concat(" there!")
.toUpperCase()
.replace("THERE", "you")
.concat(" You're amazing!")
);