Files
JavaScript-from-Beginner-to…/Chapter 8/Code Samples/ch8_examples.js
T
2021-12-01 14:39:18 +01:00

7 lines
148 B
JavaScript

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