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 25, 2024
1 parent 87b5d02 commit 972c4b6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Problem20_CountTheMonkeys/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!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-25"> <!-- Year - Month - Day -->
<title>Document</title>
</head>
<body>
<script>
function monkeyCount(num) {
let monkeys = [];
for (let i = 0; i < num; i++) {
monkeys.push(i + 1);
}
console.log(monkeys);
}
monkeyCount(10);
</script>
</body>
</html>

0 comments on commit 972c4b6

Please sign in to comment.