Skip to content

Instantly share code, notes, and snippets.

View mcmar's full-sized avatar
😎
They see me codin'

Mike Martin mcmar

😎
They see me codin'
  • Informed
  • San Francisco
View GitHub Profile
@mcmar
mcmar / scary-people-naive.js
Last active August 21, 2016 09:15
Scary People
function scaryPeople(n) {
if (!n) {
return "Normal people scare me";
}
const quote = n%2 ? '"' : "'";
return "Normal people wearing "+quote+scaryPeople(n-1)+quote+" t-shirts scare me";
}