This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var string1 = 'This is string one'; | |
| var string2 = "this is string two"; | |
| var string3 = `This is string three`; | |
| // use single quotes inside single-quoted strings or double quotes inside double-quoted strings | |
| var escString1 = 'it\'s okay'; | |
| var escString2 = "He said \"Goodbye\""; | |
| var escString3 = 'She replied \'Calm down, please\''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <h1>My First Web Page</h1> | |
| <p>My First Paragraph</p> | |
| <p id="example"></p> | |
| <script> |