Burr allows you to use Javascript's prototype/new pattern with a nicer syntax. class Apple { var chomps = 0; function chomp() { this.chomps++; } } var apple = new ...