Created
April 22, 2019 15:27
Revisions
-
ConnorFM created this gist
Apr 22, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ // Define some variables const movieName = 'The Boondock Saints'; const releaseYear = '1999'; const director = 'Troy Duffy' const message = 'The movie ' + movieName + ' ,directed by' + director + ' and released in ' + releaseYear + ' is my favourite movie' ; // Display a popup alert(message); 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ <!DOCTYPE html> <html lang="fr"> <head> <meta charset="utf-8"> <title>The Boondock Saints</title> </head> <body> <script src="boondock.js"></script> </body> </html>