Skip to content

Instantly share code, notes, and snippets.

@MarshallOfSound
MarshallOfSound / Life Motto
Last active April 25, 2017 06:50
Javascript implemenation of Life Motto :)
var count = 0,
sad = function() {
if (++count === 1) {
return true;
}
return {
stop: function() {
console.log("I AM HAPPY!!!!");
}
};