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 12, 2024
1 parent 99c6db9 commit 8ce31e0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Problem5_RepeatString/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!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">
<title>Document</title>
</head>
<body>
<script>
function repeatStr(string, num) {
if (typeof string === typeof "string" && typeof num === typeof 0) {
console.log(string.repeat(num));
} else {
console.log("Check Inputs");
}
}
repeatStr("Code", 2);
</script>
</body>
</html>

0 comments on commit 8ce31e0

Please sign in to comment.