reorganizing

This commit is contained in:
brightboost
2021-12-02 21:21:10 +01:00
125 changed files with 4052 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
let s = "Hello";
console.log(
s.concat(" there!")
.toUpperCase()
.replace("THERE", "you")
.concat(" You're amazing!")
);