Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html xmlns = "http://www.w3.org/1999/xhtml">
- <head>
- <title>Preincrementing and Postincrementing</title>
- <script type = "text/javascript">
- <!--
- var c;
- c = 5;
- document.writeln( "<h3>Postincrementing</h3>" );
- document.writeln( c ); // print 5
- // print 5 then increment
- document.writeln( "<br />" + c++ );
- document.writeln( "<br />" + c ); // print 6
- c = 5;
- document.writeln( "<h3>Preincrementing</h3>" );
- document.writeln( c ); // print 5
- // increment then print 6
- document.writeln( "<br />" + ++c );
- document.writeln( "<br />" + c ); // print 6
- // -->
- </script>
- </head><body></body>
- </html>
Advertisement
RAW Paste Data
Copied
Advertisement