Thanks to visit codestin.com
Credit goes to github.com

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

Commit a91a763

Browse files
committed
Create Exercise 1 Remove the comma.js
1 parent a446024 commit a91a763

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"use strict";
2+
let myString = "hello,this,is,a,difficult,to,read,sentence";
3+
console.log("The length of the string is "+myString.length);
4+
let repl=myString.replace(","," ");
5+
console.log(repl);

0 commit comments

Comments
 (0)