Skip to content

Instantly share code, notes, and snippets.

View hillarymelville's full-sized avatar

Hillary Melville hillarymelville

View GitHub Profile
@hillarymelville
hillarymelville / gist:10000687
Created April 6, 2014 02:17
Different ways to do the same thing
function funny(p) {
return p;
}
var funny = function (p) {
return p;
}
var funny = function wry(p) {
return p;