Created
August 10, 2016 16:00
-
-
Save Bijesse/c0a0486e13493744f69cc91a19e82f9d to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=c0a0486e13493744f69cc91a19e82f9d
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> | |
<head> | |
<title>Simply ForEach Party Invite</title> | |
</head> | |
<body> | |
<ul id="invite"></ul> | |
</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
var people = ['Tom', 'Erica', 'Chinnell', "Michael", "Courtney", "Joliz", ]; | |
people.forEach(function(name) { | |
$("#invite").append("<li>" + "Hi " + name + " You are invited to the party! " + "</li>" ); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment