├── Day 1 ├── Day 1-1.js └── Day 1-2.js ├── Day 2 ├── Day 2-1.js └── Day 2-2.js ├── Day 3 ├── Day 3-1.js ├── Day 3-2.js └── Day 3-3.js ├── Day 4 ├── Day 4-1.js ├── Day 4-2.js ├── Day 4-3.js └── Day 4-4.js ├── Day 5 ├── button.css └── index.html ├── Day 6 └── index.html └── Day 7 ├── binaryCalculator.js ├── css └── binaryCalculator.css └── index.html /Day 1/Day 1-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 1/Day 1-1.js -------------------------------------------------------------------------------- /Day 1/Day 1-2.js: -------------------------------------------------------------------------------- 1 | var re = /^([aeiou]).*\1$/gi; -------------------------------------------------------------------------------- /Day 2/Day 2-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 2/Day 2-1.js -------------------------------------------------------------------------------- /Day 2/Day 2-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 2/Day 2-2.js -------------------------------------------------------------------------------- /Day 3/Day 3-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 3/Day 3-1.js -------------------------------------------------------------------------------- /Day 3/Day 3-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 3/Day 3-2.js -------------------------------------------------------------------------------- /Day 3/Day 3-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 3/Day 3-3.js -------------------------------------------------------------------------------- /Day 4/Day 4-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 4/Day 4-1.js -------------------------------------------------------------------------------- /Day 4/Day 4-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 4/Day 4-2.js -------------------------------------------------------------------------------- /Day 4/Day 4-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 4/Day 4-3.js -------------------------------------------------------------------------------- /Day 4/Day 4-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 4/Day 4-4.js -------------------------------------------------------------------------------- /Day 5/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 5/button.css -------------------------------------------------------------------------------- /Day 5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 5/index.html -------------------------------------------------------------------------------- /Day 6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 6/index.html -------------------------------------------------------------------------------- /Day 7/binaryCalculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 7/binaryCalculator.js -------------------------------------------------------------------------------- /Day 7/css/binaryCalculator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 7/css/binaryCalculator.css -------------------------------------------------------------------------------- /Day 7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omgphil/7-Days-of-JavaScript-Week-2/HEAD/Day 7/index.html --------------------------------------------------------------------------------