Skip to content

Instantly share code, notes, and snippets.

@davemackintosh
Last active December 7, 2015 13:08
Show Gist options
  • Save davemackintosh/60bc9cecc210ca8f4eff to your computer and use it in GitHub Desktop.
Save davemackintosh/60bc9cecc210ca8f4eff to your computer and use it in GitHub Desktop.
class Person {
constructor(name) { this.name = name.toString() }
be_polite() { return `Good morning, ${this.name}.` }
be_rude() { return `Actually, Jump off of something high.` }
}
const me = new Person("Dave")
me
|> be_polite
|> be_rude
|> console.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment