├── .eslintrc-FINISHED ├── .gitignore ├── .npmrc ├── base.css ├── exercises ├── 16 - Debugging │ ├── debugging-FINISHED.js │ ├── debugging-START.js │ └── debugging.html ├── 20 - The DOM │ ├── DOM-Cardio-FINISHED.html │ ├── DOM-Cardio-FINISHED.js │ ├── DOM-Cardio.html │ ├── DOM-Cardio.js │ ├── creating-FINISHED.js │ ├── creating-with-strings-FINISHED.js │ ├── creating-with-strings.js │ ├── creating.js │ ├── index-FINISHED.html │ ├── index.html │ ├── the-dom-FINISHED.js │ ├── the-dom.js │ ├── traversing-FINISHED.js │ └── traversing.js ├── 29 - Events │ ├── events-FINISHED.html │ ├── events-FINISHED.js │ ├── events.html │ ├── events.js │ ├── forms-FINISHED.html │ ├── forms-FINISHED.js │ ├── forms.html │ └── forms.js ├── 33 - Etch-a-Sketch │ ├── etch-a-sketch-FINISHED.js │ ├── etch-a-sketch.js │ └── index.html ├── 34 - Click Outside │ ├── click-outside-FINISHED.html │ ├── click-outside-FINISHED.js │ ├── click-outside.html │ └── click-outside.js ├── 35 - Scroll To Accept │ ├── scroll-to-accept-FINISHED.html │ ├── scroll-to-accept-FINISHED.js │ ├── scroll-to-accept.html │ └── scroll-to-accept.js ├── 36 - Tabs │ ├── index.html │ ├── tabs-finished.js │ ├── tabs-style.css │ └── tabs.js ├── 46 - Arrays │ ├── array-loopings-methods-FINISHED.html │ ├── array-loopings-methods-START.html │ ├── array-methods-FINISHED.html │ ├── array-methods-START.html │ ├── for-loops-FINISHED.html │ ├── for-loops-START.html │ ├── reduce-challenge-FINISHED.html │ └── reduce-challenge-START.html ├── 55 - Face Detection Censorship │ ├── .npmrc │ ├── face-FINISHED.html │ ├── face.html │ ├── package-lock.json │ ├── package.json │ ├── pixelated-face-DEMO.js │ ├── pixelated-face-FINISHED.js │ └── pixelated-face.js ├── 56 - Sarcastic Text │ ├── index.html │ ├── text-DEMO.js │ ├── text-FINISHED.js │ └── text.js ├── 57 - Shopping List │ ├── index.html │ ├── shopping-DEMO.js │ ├── shopping-FINISHED.js │ ├── shopping.css │ └── shopping.js ├── 58 - Gallery │ ├── gallery-DEMO.js │ ├── gallery-FINISHED.js │ ├── gallery-prototype-FINISHED.js │ ├── gallery.css │ ├── gallery.js │ ├── images │ │ ├── 270-camo-sunset.jpg │ │ ├── TNF-fanorak.png │ │ ├── canada-goose.jpg │ │ ├── coral-yeti.jpg │ │ ├── hondo.jpg │ │ ├── kith-hoodie.jpg │ │ ├── naked-and-famous-denim.jpg │ │ ├── nudie-belt.jpg │ │ ├── patagonia black hole.jpg │ │ ├── rimowa.png │ │ ├── ultra-boost.jpg │ │ └── vapormax.jpg │ └── index.html ├── 59 - Slider │ ├── .npmrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index-FINISHED.js │ │ ├── index-prototype-FINISHED.js │ │ └── index.js │ └── style.scss ├── 72 - Async Prompts │ ├── index.html │ ├── scripts-FINISHED.js │ ├── scripts.js │ └── style.css ├── 73 - Async Typer │ ├── index.html │ ├── scripts-FINISHED.js │ └── scripts.js ├── 75 - CORS and Recipes │ ├── .npmrc │ ├── index-FINISHED.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── scripts-FINISHED.js │ └── scripts.js ├── 76 - Dad Jokes │ ├── index-FINISHED.html │ ├── index.html │ ├── jokes-FINISHED.js │ └── jokes.js ├── 77 - Currency Converter │ ├── index.html │ ├── money-FINISHED.js │ ├── money.css │ └── money.js ├── 79 - Currency Converter Modules Refactor - FINISHED │ ├── currencies.js │ ├── elements.js │ ├── handlers.js │ ├── index.html │ ├── init.js │ ├── lib.js │ ├── money.css │ ├── money.js │ └── utils.js ├── 80 - Dad Jokes Modules - FINISHED │ ├── data │ │ └── buttonText.js │ ├── index.html │ ├── jokes.js │ └── lib │ │ ├── elements.js │ │ ├── handlers.js │ │ ├── index.js │ │ └── utils.js ├── 81 - Dad Jokes Bundling - FINISHED │ ├── .npmrc │ ├── data │ │ └── buttonText.js │ ├── index.html │ ├── jokes.js │ ├── lib │ │ ├── elements.js │ │ ├── handlers.js │ │ ├── index.js │ │ └── utils.js │ ├── package-lock.json │ └── package.json ├── 82 - npm modules - FINISHED │ ├── .npmrc │ ├── index.html │ ├── index.js │ ├── package-lock.json │ └── package.json ├── 83 - Security │ ├── .npmrc │ ├── index.html │ ├── nasty-FINISHED.js │ ├── nasty.js │ ├── package-lock.json │ └── package.json ├── 84 - Web Speech Colour Game │ ├── .npmrc │ ├── colors-FINISHED.js │ ├── colors.js │ ├── handlers-FINISHED.js │ ├── handlers.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── speech-FINISHED.js │ ├── speech.js │ └── style.css └── 85 - Audio Visualizer Oscilloscope │ ├── .npmrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── sound-FINISHED.js │ ├── sound.js │ └── utils.js ├── function-definition.jpg ├── package.json ├── playground ├── apis-FINISHED.html ├── apis.html ├── arrays-FINISHED.html ├── arrays.html ├── async-await-FINISHED.html ├── async-await-error-handling-FINISHED.html ├── async-await-error-handling.html ├── async-await.html ├── bedmas-FINISHED.html ├── bedmas.html ├── bind-call-apply-FINISHED.html ├── bind-call-apply.html ├── classes-FINISHED.html ├── classes.html ├── closures-FINISHED.html ├── closures.html ├── custom-functions │ ├── cf-FINISHED.js │ ├── cf.js │ ├── index-FINISHED.html │ ├── index.html │ ├── ways-to-make-a-function-FINISHED.js │ └── ways-to-make-a-function.js ├── event-loop-FINISHED.html ├── event-loop.html ├── functions-FINISHED.html ├── functions.html ├── hoisting-FINISHED.html ├── hoisting-FINISHED.js ├── hoisting.html ├── hoisting.js ├── if-statements-FINISHED.html ├── if-statements.html ├── intervals-FINISHED.html ├── intervals.html ├── maps-FINISHED.html ├── maps.html ├── modules │ ├── base.css │ ├── currencies.js │ ├── handlers-FINISHED.js │ ├── handlers.js │ ├── index-FINISHED.html │ ├── index.html │ ├── scripts-FINISHED.js │ ├── scripts.js │ ├── utils-FINISHED.js │ ├── utils.js │ ├── wes-FINISHED.js │ └── wes.js ├── new-this-FINISHED.html ├── new-this.html ├── node-example.js ├── objects-FINISHED.html ├── objects.html ├── promise-chain-FINISHED.html ├── promises-FINISHED.html ├── promises.html ├── running-js-FINISHED.html ├── running-js.html ├── scope-FINISHED.html ├── scope-FINISHED.js ├── scope.html ├── scope.js ├── some-FINISHED.js ├── some.js ├── switch-statements-FINISHED.html ├── switch-statements.html ├── turtle.png ├── types-FINISHED.html ├── types-FINISHED.js ├── types.html ├── types.js ├── variables-FINISHED.html └── variables.html ├── readme.md └── snippets ├── README.md ├── htmlbase.html └── htmlbase.json /.eslintrc-FINISHED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/.eslintrc-FINISHED -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | haters/ 4 | .cache/ 5 | dist/ 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/.npmrc -------------------------------------------------------------------------------- /base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/base.css -------------------------------------------------------------------------------- /exercises/16 - Debugging/debugging-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/16 - Debugging/debugging-FINISHED.js -------------------------------------------------------------------------------- /exercises/16 - Debugging/debugging-START.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/16 - Debugging/debugging-START.js -------------------------------------------------------------------------------- /exercises/16 - Debugging/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/16 - Debugging/debugging.html -------------------------------------------------------------------------------- /exercises/20 - The DOM/DOM-Cardio-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/DOM-Cardio-FINISHED.html -------------------------------------------------------------------------------- /exercises/20 - The DOM/DOM-Cardio-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/DOM-Cardio-FINISHED.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/DOM-Cardio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/DOM-Cardio.html -------------------------------------------------------------------------------- /exercises/20 - The DOM/DOM-Cardio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/DOM-Cardio.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/creating-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/creating-FINISHED.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/creating-with-strings-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/creating-with-strings-FINISHED.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/creating-with-strings.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/20 - The DOM/creating.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/20 - The DOM/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/index-FINISHED.html -------------------------------------------------------------------------------- /exercises/20 - The DOM/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/index.html -------------------------------------------------------------------------------- /exercises/20 - The DOM/the-dom-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/the-dom-FINISHED.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/the-dom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/20 - The DOM/traversing-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/20 - The DOM/traversing-FINISHED.js -------------------------------------------------------------------------------- /exercises/20 - The DOM/traversing.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/29 - Events/events-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/events-FINISHED.html -------------------------------------------------------------------------------- /exercises/29 - Events/events-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/events-FINISHED.js -------------------------------------------------------------------------------- /exercises/29 - Events/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/events.html -------------------------------------------------------------------------------- /exercises/29 - Events/events.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/29 - Events/forms-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/forms-FINISHED.html -------------------------------------------------------------------------------- /exercises/29 - Events/forms-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/forms-FINISHED.js -------------------------------------------------------------------------------- /exercises/29 - Events/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/29 - Events/forms.html -------------------------------------------------------------------------------- /exercises/29 - Events/forms.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/33 - Etch-a-Sketch/etch-a-sketch-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/33 - Etch-a-Sketch/etch-a-sketch-FINISHED.js -------------------------------------------------------------------------------- /exercises/33 - Etch-a-Sketch/etch-a-sketch.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/33 - Etch-a-Sketch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/33 - Etch-a-Sketch/index.html -------------------------------------------------------------------------------- /exercises/34 - Click Outside/click-outside-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/34 - Click Outside/click-outside-FINISHED.html -------------------------------------------------------------------------------- /exercises/34 - Click Outside/click-outside-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/34 - Click Outside/click-outside-FINISHED.js -------------------------------------------------------------------------------- /exercises/34 - Click Outside/click-outside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/34 - Click Outside/click-outside.html -------------------------------------------------------------------------------- /exercises/34 - Click Outside/click-outside.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/35 - Scroll To Accept/scroll-to-accept-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/35 - Scroll To Accept/scroll-to-accept-FINISHED.html -------------------------------------------------------------------------------- /exercises/35 - Scroll To Accept/scroll-to-accept-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/35 - Scroll To Accept/scroll-to-accept-FINISHED.js -------------------------------------------------------------------------------- /exercises/35 - Scroll To Accept/scroll-to-accept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/35 - Scroll To Accept/scroll-to-accept.html -------------------------------------------------------------------------------- /exercises/35 - Scroll To Accept/scroll-to-accept.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/36 - Tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/36 - Tabs/index.html -------------------------------------------------------------------------------- /exercises/36 - Tabs/tabs-finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/36 - Tabs/tabs-finished.js -------------------------------------------------------------------------------- /exercises/36 - Tabs/tabs-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/36 - Tabs/tabs-style.css -------------------------------------------------------------------------------- /exercises/36 - Tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/36 - Tabs/tabs.js -------------------------------------------------------------------------------- /exercises/46 - Arrays/array-loopings-methods-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/array-loopings-methods-FINISHED.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/array-loopings-methods-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/array-loopings-methods-START.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/array-methods-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/array-methods-FINISHED.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/array-methods-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/array-methods-START.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/for-loops-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/for-loops-FINISHED.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/for-loops-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/for-loops-START.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/reduce-challenge-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/reduce-challenge-FINISHED.html -------------------------------------------------------------------------------- /exercises/46 - Arrays/reduce-challenge-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/46 - Arrays/reduce-challenge-START.html -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/.npmrc -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/face-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/face-FINISHED.html -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/face.html -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/package-lock.json -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/package.json -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/pixelated-face-DEMO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/pixelated-face-DEMO.js -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/pixelated-face-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/pixelated-face-FINISHED.js -------------------------------------------------------------------------------- /exercises/55 - Face Detection Censorship/pixelated-face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/55 - Face Detection Censorship/pixelated-face.js -------------------------------------------------------------------------------- /exercises/56 - Sarcastic Text/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/56 - Sarcastic Text/index.html -------------------------------------------------------------------------------- /exercises/56 - Sarcastic Text/text-DEMO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/56 - Sarcastic Text/text-DEMO.js -------------------------------------------------------------------------------- /exercises/56 - Sarcastic Text/text-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/56 - Sarcastic Text/text-FINISHED.js -------------------------------------------------------------------------------- /exercises/56 - Sarcastic Text/text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/57 - Shopping List/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/57 - Shopping List/index.html -------------------------------------------------------------------------------- /exercises/57 - Shopping List/shopping-DEMO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/57 - Shopping List/shopping-DEMO.js -------------------------------------------------------------------------------- /exercises/57 - Shopping List/shopping-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/57 - Shopping List/shopping-FINISHED.js -------------------------------------------------------------------------------- /exercises/57 - Shopping List/shopping.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/57 - Shopping List/shopping.css -------------------------------------------------------------------------------- /exercises/57 - Shopping List/shopping.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/58 - Gallery/gallery-DEMO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/gallery-DEMO.js -------------------------------------------------------------------------------- /exercises/58 - Gallery/gallery-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/gallery-FINISHED.js -------------------------------------------------------------------------------- /exercises/58 - Gallery/gallery-prototype-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/gallery-prototype-FINISHED.js -------------------------------------------------------------------------------- /exercises/58 - Gallery/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/gallery.css -------------------------------------------------------------------------------- /exercises/58 - Gallery/gallery.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/270-camo-sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/270-camo-sunset.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/TNF-fanorak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/TNF-fanorak.png -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/canada-goose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/canada-goose.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/coral-yeti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/coral-yeti.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/hondo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/hondo.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/kith-hoodie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/kith-hoodie.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/naked-and-famous-denim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/naked-and-famous-denim.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/nudie-belt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/nudie-belt.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/patagonia black hole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/patagonia black hole.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/rimowa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/rimowa.png -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/ultra-boost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/ultra-boost.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/images/vapormax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/images/vapormax.jpg -------------------------------------------------------------------------------- /exercises/58 - Gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/58 - Gallery/index.html -------------------------------------------------------------------------------- /exercises/59 - Slider/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/.npmrc -------------------------------------------------------------------------------- /exercises/59 - Slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/index.html -------------------------------------------------------------------------------- /exercises/59 - Slider/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/package-lock.json -------------------------------------------------------------------------------- /exercises/59 - Slider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/package.json -------------------------------------------------------------------------------- /exercises/59 - Slider/src/index-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/src/index-FINISHED.js -------------------------------------------------------------------------------- /exercises/59 - Slider/src/index-prototype-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/src/index-prototype-FINISHED.js -------------------------------------------------------------------------------- /exercises/59 - Slider/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/59 - Slider/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/59 - Slider/style.scss -------------------------------------------------------------------------------- /exercises/72 - Async Prompts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/72 - Async Prompts/index.html -------------------------------------------------------------------------------- /exercises/72 - Async Prompts/scripts-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/72 - Async Prompts/scripts-FINISHED.js -------------------------------------------------------------------------------- /exercises/72 - Async Prompts/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/72 - Async Prompts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/72 - Async Prompts/style.css -------------------------------------------------------------------------------- /exercises/73 - Async Typer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/73 - Async Typer/index.html -------------------------------------------------------------------------------- /exercises/73 - Async Typer/scripts-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/73 - Async Typer/scripts-FINISHED.js -------------------------------------------------------------------------------- /exercises/73 - Async Typer/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/.npmrc -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/index-FINISHED.html -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/index.html -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/package-lock.json -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/package.json -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/scripts-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/scripts-FINISHED.js -------------------------------------------------------------------------------- /exercises/75 - CORS and Recipes/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/75 - CORS and Recipes/scripts.js -------------------------------------------------------------------------------- /exercises/76 - Dad Jokes/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/76 - Dad Jokes/index-FINISHED.html -------------------------------------------------------------------------------- /exercises/76 - Dad Jokes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/76 - Dad Jokes/index.html -------------------------------------------------------------------------------- /exercises/76 - Dad Jokes/jokes-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/76 - Dad Jokes/jokes-FINISHED.js -------------------------------------------------------------------------------- /exercises/76 - Dad Jokes/jokes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/76 - Dad Jokes/jokes.js -------------------------------------------------------------------------------- /exercises/77 - Currency Converter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/77 - Currency Converter/index.html -------------------------------------------------------------------------------- /exercises/77 - Currency Converter/money-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/77 - Currency Converter/money-FINISHED.js -------------------------------------------------------------------------------- /exercises/77 - Currency Converter/money.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/77 - Currency Converter/money.css -------------------------------------------------------------------------------- /exercises/77 - Currency Converter/money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/77 - Currency Converter/money.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/currencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/currencies.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/elements.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/handlers.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/index.html -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/init.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/lib.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/money.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/money.css -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/money.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/money.js -------------------------------------------------------------------------------- /exercises/79 - Currency Converter Modules Refactor - FINISHED/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/79 - Currency Converter Modules Refactor - FINISHED/utils.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/data/buttonText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/data/buttonText.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/index.html -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/jokes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/jokes.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/lib/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/lib/elements.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/lib/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/lib/handlers.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/lib/index.js -------------------------------------------------------------------------------- /exercises/80 - Dad Jokes Modules - FINISHED/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/80 - Dad Jokes Modules - FINISHED/lib/utils.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/.npmrc -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/data/buttonText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/data/buttonText.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/index.html -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/jokes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/jokes.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/lib/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/lib/elements.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/lib/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/lib/handlers.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/lib/index.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/lib/utils.js -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/package-lock.json -------------------------------------------------------------------------------- /exercises/81 - Dad Jokes Bundling - FINISHED/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/81 - Dad Jokes Bundling - FINISHED/package.json -------------------------------------------------------------------------------- /exercises/82 - npm modules - FINISHED/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/82 - npm modules - FINISHED/.npmrc -------------------------------------------------------------------------------- /exercises/82 - npm modules - FINISHED/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/82 - npm modules - FINISHED/index.html -------------------------------------------------------------------------------- /exercises/82 - npm modules - FINISHED/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/82 - npm modules - FINISHED/index.js -------------------------------------------------------------------------------- /exercises/82 - npm modules - FINISHED/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/82 - npm modules - FINISHED/package-lock.json -------------------------------------------------------------------------------- /exercises/82 - npm modules - FINISHED/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/82 - npm modules - FINISHED/package.json -------------------------------------------------------------------------------- /exercises/83 - Security/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/.npmrc -------------------------------------------------------------------------------- /exercises/83 - Security/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/index.html -------------------------------------------------------------------------------- /exercises/83 - Security/nasty-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/nasty-FINISHED.js -------------------------------------------------------------------------------- /exercises/83 - Security/nasty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/nasty.js -------------------------------------------------------------------------------- /exercises/83 - Security/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/package-lock.json -------------------------------------------------------------------------------- /exercises/83 - Security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/83 - Security/package.json -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/.npmrc -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/colors-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/colors-FINISHED.js -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/colors.js -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/handlers-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/handlers-FINISHED.js -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/handlers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/index.html -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/package-lock.json -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/package.json -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/speech-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/speech-FINISHED.js -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/speech.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/84 - Web Speech Colour Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/84 - Web Speech Colour Game/style.css -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/.npmrc -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/index.html -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/package-lock.json -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/package.json -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/sound-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/sound-FINISHED.js -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/sound.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exercises/85 - Audio Visualizer Oscilloscope/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/exercises/85 - Audio Visualizer Oscilloscope/utils.js -------------------------------------------------------------------------------- /function-definition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/function-definition.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/package.json -------------------------------------------------------------------------------- /playground/apis-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/apis-FINISHED.html -------------------------------------------------------------------------------- /playground/apis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/apis.html -------------------------------------------------------------------------------- /playground/arrays-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/arrays-FINISHED.html -------------------------------------------------------------------------------- /playground/arrays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/arrays.html -------------------------------------------------------------------------------- /playground/async-await-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/async-await-FINISHED.html -------------------------------------------------------------------------------- /playground/async-await-error-handling-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/async-await-error-handling-FINISHED.html -------------------------------------------------------------------------------- /playground/async-await-error-handling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/async-await-error-handling.html -------------------------------------------------------------------------------- /playground/async-await.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/async-await.html -------------------------------------------------------------------------------- /playground/bedmas-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/bedmas-FINISHED.html -------------------------------------------------------------------------------- /playground/bedmas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/bedmas.html -------------------------------------------------------------------------------- /playground/bind-call-apply-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/bind-call-apply-FINISHED.html -------------------------------------------------------------------------------- /playground/bind-call-apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/bind-call-apply.html -------------------------------------------------------------------------------- /playground/classes-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/classes-FINISHED.html -------------------------------------------------------------------------------- /playground/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/classes.html -------------------------------------------------------------------------------- /playground/closures-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/closures-FINISHED.html -------------------------------------------------------------------------------- /playground/closures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/closures.html -------------------------------------------------------------------------------- /playground/custom-functions/cf-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/custom-functions/cf-FINISHED.js -------------------------------------------------------------------------------- /playground/custom-functions/cf.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/custom-functions/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/custom-functions/index-FINISHED.html -------------------------------------------------------------------------------- /playground/custom-functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/custom-functions/index.html -------------------------------------------------------------------------------- /playground/custom-functions/ways-to-make-a-function-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/custom-functions/ways-to-make-a-function-FINISHED.js -------------------------------------------------------------------------------- /playground/custom-functions/ways-to-make-a-function.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/event-loop-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/event-loop-FINISHED.html -------------------------------------------------------------------------------- /playground/event-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/event-loop.html -------------------------------------------------------------------------------- /playground/functions-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/functions-FINISHED.html -------------------------------------------------------------------------------- /playground/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/functions.html -------------------------------------------------------------------------------- /playground/hoisting-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/hoisting-FINISHED.html -------------------------------------------------------------------------------- /playground/hoisting-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/hoisting-FINISHED.js -------------------------------------------------------------------------------- /playground/hoisting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/hoisting.html -------------------------------------------------------------------------------- /playground/hoisting.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/if-statements-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/if-statements-FINISHED.html -------------------------------------------------------------------------------- /playground/if-statements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/if-statements.html -------------------------------------------------------------------------------- /playground/intervals-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/intervals-FINISHED.html -------------------------------------------------------------------------------- /playground/intervals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/intervals.html -------------------------------------------------------------------------------- /playground/maps-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/maps-FINISHED.html -------------------------------------------------------------------------------- /playground/maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/maps.html -------------------------------------------------------------------------------- /playground/modules/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/base.css -------------------------------------------------------------------------------- /playground/modules/currencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/currencies.js -------------------------------------------------------------------------------- /playground/modules/handlers-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/handlers-FINISHED.js -------------------------------------------------------------------------------- /playground/modules/handlers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/modules/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/index-FINISHED.html -------------------------------------------------------------------------------- /playground/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/index.html -------------------------------------------------------------------------------- /playground/modules/scripts-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/scripts-FINISHED.js -------------------------------------------------------------------------------- /playground/modules/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/modules/utils-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/utils-FINISHED.js -------------------------------------------------------------------------------- /playground/modules/utils.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/modules/wes-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/modules/wes-FINISHED.js -------------------------------------------------------------------------------- /playground/modules/wes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/new-this-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/new-this-FINISHED.html -------------------------------------------------------------------------------- /playground/new-this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/new-this.html -------------------------------------------------------------------------------- /playground/node-example.js: -------------------------------------------------------------------------------- 1 | console.log('IM from node'); 2 | -------------------------------------------------------------------------------- /playground/objects-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/objects-FINISHED.html -------------------------------------------------------------------------------- /playground/objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/objects.html -------------------------------------------------------------------------------- /playground/promise-chain-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/promise-chain-FINISHED.html -------------------------------------------------------------------------------- /playground/promises-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/promises-FINISHED.html -------------------------------------------------------------------------------- /playground/promises.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/promises.html -------------------------------------------------------------------------------- /playground/running-js-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/running-js-FINISHED.html -------------------------------------------------------------------------------- /playground/running-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/running-js.html -------------------------------------------------------------------------------- /playground/scope-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/scope-FINISHED.html -------------------------------------------------------------------------------- /playground/scope-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/scope-FINISHED.js -------------------------------------------------------------------------------- /playground/scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/scope.html -------------------------------------------------------------------------------- /playground/scope.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/some-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/some-FINISHED.js -------------------------------------------------------------------------------- /playground/some.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/switch-statements-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/switch-statements-FINISHED.html -------------------------------------------------------------------------------- /playground/switch-statements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/switch-statements.html -------------------------------------------------------------------------------- /playground/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/turtle.png -------------------------------------------------------------------------------- /playground/types-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/types-FINISHED.html -------------------------------------------------------------------------------- /playground/types-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/types-FINISHED.js -------------------------------------------------------------------------------- /playground/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/types.html -------------------------------------------------------------------------------- /playground/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playground/variables-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/variables-FINISHED.html -------------------------------------------------------------------------------- /playground/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/playground/variables.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/readme.md -------------------------------------------------------------------------------- /snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/snippets/README.md -------------------------------------------------------------------------------- /snippets/htmlbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/snippets/htmlbase.html -------------------------------------------------------------------------------- /snippets/htmlbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesbos/beginner-javascript/HEAD/snippets/htmlbase.json --------------------------------------------------------------------------------