Created
March 18, 2016 17:00
-
-
Save icemancast/bed667fff6497dcaad72 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<head> | |
<title>Javascript</title> | |
</head> | |
<body> | |
<script> | |
(function() { | |
'use strict'; | |
// Exercise 1 ================== | |
// List 10 movie titles in an array with your favorite | |
// movie in the array | |
// Loop through and console log title, when you get to your favorite | |
//movie change the message for that movie "This is my favorite: Title" | |
})(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment