Skip to content

Commit 458f42b

Browse files
committed
Update test.html
1 parent 805e12c commit 458f42b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Chapter6/test.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,15 @@
1111
list.insert("First", "head");
1212
list.insert("Second", "First");
1313
list.insert("Third", "Second");
14+
15+
list.insert("Fourth", "First");
1416
list.display();
17+
18+
console.log('-----------');
19+
list.remove("Fourth");
20+
list.display();
21+
console.log('-----------');
22+
list.dispReverse();
1523
</script>
1624
</body>
17-
</html>
25+
</html>

0 commit comments

Comments
 (0)