Last active
September 21, 2019 13:40
-
-
Save stephanBerger/ffcd32591d4280a0880742058a262385 to your computer and use it in GitHub Desktop.
Javascript-1
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Javascript-1</title> | |
| <script src="script.js"></script> | |
| </head> | |
| <body> | |
| <main> | |
| </main> | |
| </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 titleMovie = 'Pulp Fiction'; | |
| let yearRelease = 1994; | |
| const movieDirector ='Quentin Tarantino'; | |
| const message = 'Le film ' + titleMovie + ' est sorti en ' + yearRelease + ', le realisateur est: ' + movieDirector; | |
| alert(message); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment