Files
JavaScript-from-Beginner-to…/Chapter 08/Code Samples/ch8_examples.js
T
brightboost 67a8d8a7a0 reorganizing
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!")
);