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 20, 2024
1 parent d5dbac2 commit c5185e2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Problem15_ReversingWordsInString/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!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-21"> <!-- Year - Month - Day -->
<title>Document</title>
</head>
<body>
<script>
function reverse(string) {
let array = string.split(" ");
let newArray = [];
for (let i = 0; i < array.length; i++) {
newArray.unshift(array[i]);
}
console.log(newArray.join(" "));
}
reverse("hi world I Am Engineer");
</script>
</body>
</html>

0 comments on commit c5185e2

Please sign in to comment.