1,HTML source code£º <html> <head> <title>How to use Stack</title> </head> <body> <script src="jsjava.js"></script> <script> var s=new Stack(); s.push("cat"); s.push("dog"); document.write(s.pop()); </script> </body> </html> 2,The display:

dog