Skip to content

Instantly share code, notes, and snippets.

View liseferguson's full-sized avatar

Lise liseferguson

  • Portland, OR.
View GitHub Profile
@liseferguson
liseferguson / wisePerson.js
Created March 9, 2018 23:16
wisePerson generator
function wisePerson(wiseType, whatToSay) {
return `A wise ${wiseType} once said: "${whatToSay}".`;
}
// tests
function testWisePerson() {
const wiseType = 'goat';