Skip to content

Instantly share code, notes, and snippets.

@phated
Created September 25, 2012 01:47
Show Gist options
  • Save phated/3779516 to your computer and use it in GitHub Desktop.
Save phated/3779516 to your computer and use it in GitHub Desktop.
Alisa's Bitch Logic
var complain = function(){
alert('FUCK THIS SHIT!');
};
var noFucksWereGiven = function(){
return;
};
var doSomethingAboutIt = function(fucks){
bitchLogic(fucks--);
};
var bitchLogic = function(fucks){
var giveAshit = 2;
if(fucks < giveAshit){
complain();
} else if(fucks === 0){
noFucksWereGiven();
} else {
doSomethingAboutIt(fucks);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment