Skip to content

Instantly share code, notes, and snippets.

View richtaur's full-sized avatar
👁️
valadria.com

Matt Hackett richtaur

👁️
valadria.com
View GitHub Profile
@richtaur
richtaur / if_style.js
Created July 30, 2010 16:44 — forked from geoffb/gist:500856
a line for each condition
if (
something
&& !somethingElse
&& (otherThing === null)
) {
callFunction();
}