Skip to content

Instantly share code, notes, and snippets.

View davebalmer's full-sized avatar
💭
Working on my first Steam release! Word Rave is a unique action word puzzler

Dave Balmer davebalmer

💭
Working on my first Steam release! Word Rave is a unique action word puzzler
View GitHub Profile
@kaaes
kaaes / bind_ex.js
Created May 19, 2011 14:59
bind() example
function sum () {
var s = 0;
for (var i = 0, len = arguments. length; i < len; i++) {
s += arguments[i];
}
return s;
}
// execute function and
// return 6, context is window