Skip to content

Instantly share code, notes, and snippets.

View terraboops's full-sized avatar
sparkle boops

Terra Tauri terraboops

sparkle boops
View GitHub Profile
@terraboops
terraboops / fizzBuzz.js
Last active December 9, 2015 17:28
JS FizzBuzz, Generalized
//Factory for Test Conditions
function testFactor(factor, msg) {
"use strict";
return function(i){
var output = "";
if(i%factor===0) {
output = msg;
}
return output;
};