Skip to content

Instantly share code, notes, and snippets.

@barthflo
Created September 28, 2020 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barthflo/262ecbd423670dd73fc4d91a7fbbc941 to your computer and use it in GitHub Desktop.
Save barthflo/262ecbd423670dd73fc4d91a7fbbc941 to your computer and use it in GitHub Desktop.
WCS - Basics of JS - Discover the language
const movieName = "The Grand Budapest Hotel";
const movieDirector = "Wes Anderson";
const releaseDate = 2014;
alert(`${movieName} directed by ${movieDirector}, was released in ${releaseDate.toString()}.`);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Favourite Movie</title>
</head>
<body>
<script src="./favourite-movie.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment