Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
SamyBeshoy authored Apr 16, 2024
1 parent d266ece commit 793ac0d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Problem10_RemoveSpaceFromString/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Beshoy Samy Englizy">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Custom Meta Tag For Date -->
<meta name="date" content="2024-04-16"> <!-- Year - Month - Day -->
<title>Document</title>
</head>
<body>
<script>
function removeStr(string) {
let arrayOfSring = string.split("");
let outPut = "";
for (let i = 0; i < arrayOfSring.length; i++) {
if (arrayOfSring[i] !== " ") {
outPut += arrayOfSring[i];
}
}
console.log(outPut);
}
removeStr(" H i - W orld");
</script>
</body>
</html>

0 comments on commit 793ac0d

Please sign in to comment.