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 14, 2024
1 parent 63b6501 commit 543551d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Problem8_FindNeedle/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 findNeedle(array) {
for (let i = 0; i < array.length; i++) {
if (array[i] === "Needle") {
console.log(`Found Needle At Position ${array.indexOf("Needle") + 1}`);
}
}
}
findNeedle(["Hi", "Apple", "Needle", "Pea"]);
</script>
</body>
</html>

0 comments on commit 543551d

Please sign in to comment.