Author: Not specified | Language: javascript |
Description: Not specified | Timestamp: 2018-01-17 17:42:35 +0000 |
View raw paste | Reply |
- <!doctype html>
- <html>
- <head>
- <title>Javascript Basics</title>
- <meta charset="utf-8">
- <script type="text/javascript">
- if ( 2 > 3 ){
- alert ( 'Das stimmt' );
- } else {
- alert ( 'Das stimmt nicht' );
- }
- </script>
- </head>
- <body>
- </body>
- </html>
View raw paste | Reply |