Skip to content

Instantly share code, notes, and snippets.

@stuartambient
stuartambient / image.md
Created September 17, 2020 16:10 — forked from prof3ssorSt3v3/image.md
Layered background image effects and clipping
@stuartambient
stuartambient / myPinkTruck.js
Created November 4, 2019 01:08 — forked from blogscot/myPinkTruck.js
Factory Pattern examples using ES6 syntax
class Car {
constructor(doors = 4, state = "brand new", color = "silver") {
this.doors = doors
this.state = state
this.color = color
}
}
class Truck {