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
<!-- <input id="new-to-do" type="test" /> | |
<button onclick="myFunction()">Click Me!</button> | |
<ul id="to-do"> | |
</ul> | |
<script src="test.js"></script>--> |
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
var tasks = [ "Drink Coffee", "Eat Donuts", "Go to Gym" ]; | |
var loadTasks = function(myTasks) { | |
for (var i=0; i < myTasks.length; i++) { | |
$("#to-do").append("<li>" + myTasks[i] + "</li>"); | |
} |
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
var alphabet = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]; | |
var vowels = ["a", "e", "i", "o", "u", "y", "h"]; | |
var numberOfWords = 0; | |
var words = []; | |
var populatePossibilities = function(base) { | |
var newPossibilities = []; | |
var baseLength = base.length; |
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
csemjacobs | |
7:26 Okay, I'm going to head out in a few mins but since I got this topic started. Time to end it with some quick questions. | |
7:26 1 question per person please. | |
grimlock | |
7:26 42 | |
jaironkalach | |
7:26 pulls up his list and looks for a quick one. | |
indy | |
7:26 yellow | |
7:26 no, blue! |
NewerOlder