Skip to content

Instantly share code, notes, and snippets.

View decorouz's full-sized avatar

Adeyemi Biola decorouz

View GitHub Profile
HTML
- Semantic HTML
- Event delegation
- Accessibility / ARIA
CSS
- Specificity
- Pseudo-elements
- Pseudo-selectors
- Combinators
function makeSoup() {
const pot = boilPot();
chopCarrots();
chopOnions();
await pot;
addCarrots();
await letPotKeepBoiling(5);
addOnions();
await letPotKeepBoiling(10);
console.log("Your vegetable soup is ready!");
@simonblakemore
simonblakemore / Meal_Maker.js
Created October 16, 2017 11:37
Codecademy: Meal Maker Lesson - Day 15
const menu = {
_courses: {
_appetizers: [],
_mains: [],
_desserts: [],
get appetizers() {
return this._appetizers;
},
set appetizers(appetizersIn) {