Created
March 11, 2019 10:08
-
-
Save mehdihettak/454cf66baba62e653069bda1a1259932 to your computer and use it in GitHub Desktop.
quete JS part1 mehdi
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
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Testjavascript</title> | |
| </head> | |
| <body> | |
| <script src = "script.js"></script> | |
| </body> | |
| </html> |
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
| const name = "jack"; | |
| const year = "2019" | |
| const bestMovie = "Heat"; | |
| const createdBy = "Michael Mann"; | |
| const date ="1995" | |
| alert(bestMovie + ", réalisé par " + createdBy + ", est sorti en " + date) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment