Our Goal
Goal: To be able to understand this function:
// The .bind method from Prototype.js
Function.prototype.bind = function(){
var fn = this, args = Array.prototype.slice.call(arguments), object = args.shift();
return function(){
return fn.apply(ob...
JSの言語仕様をコードみながら動かしながら勉強できるサイト。実際に穴埋め問題とかを解くことで理解を深めやすい。まだまだ理解しきれてないんだなーと実感。。。