53063593e3
Final
17 lines
315 B
HTML
17 lines
315 B
HTML
<script>
|
|
haystack = new Array()
|
|
haystack[4] = "Needle"
|
|
haystack[11] = "Needle"
|
|
haystack[17] = "Needle"
|
|
|
|
for (j = 0 ; j < 20 ; ++j)
|
|
{
|
|
if (haystack[j] == "Needle")
|
|
{
|
|
document.write("<br>- Found at location " + j + "<br>")
|
|
continue
|
|
}
|
|
|
|
document.write(j + ", ")
|
|
}
|
|
</script> |