Final
This commit is contained in:
RobinNixon
2020-12-10 13:50:02 +00:00
parent ec6f6b8d61
commit 3aeeb4477e
847 changed files with 0 additions and 0 deletions
-23
View File
@@ -1,23 +0,0 @@
<script>
numbers = []
for (j=1 ; j<6 ; ++j)
{
if (j == 2 || j == 5)
{
document.write("Processing 'todo' #" + j + "<br>")
}
else
{
document.write("Putting off 'todo' #" + j + " until later<br>")
numbers.push(j)
}
}
document.write("<br>Finished processing the priority tasks.")
document.write("<br>Commencing stored tasks, most recent first.<br><br>")
document.write("Now processing 'todo' #" + numbers.pop() + "<br>")
document.write("Now processing 'todo' #" + numbers.pop() + "<br>")
document.write("Now processing 'todo' #" + numbers.pop() + "<br>")
</script>