Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit b9eb54f

Browse files
Add the first file
1 parent 71d8f94 commit b9eb54f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
'use strict'
2+
let myString = "hello,this,is,a,difficult,to,read,sentence";
3+
console.log("my string in the first time: "+myString);
4+
console.log("the length of my String is: "+myString.length);
5+
myString = myString.replace(/,/g, " ");
6+
console.log("my string in the second time: "+myString);

0 commit comments

Comments
 (0)