Object Craziness
Oh Javascript, you sneaky bastard. Let's say you have an array of objects: var arr = [{}, {}, {}] Can you use Array.prototype.slice() on them? MDN defines .slice( »
Oh Javascript, you sneaky bastard. Let's say you have an array of objects: var arr = [{}, {}, {}] Can you use Array.prototype.slice() on them? MDN defines .slice( »
Intro You wanna learn how to code? Get in line. So does everyone else. I am getting this question more and more from people wanting to »
I love subjects that can be both simple and extremely complex and trees fit perfectly into that description. Basic trees The idea of a tree is »
Man, it's been a while since I've blogged! I have so many blog entries as drafts--a lot of them are about 70% of the way through, »
I have avoided writing tests for most of my projects through various means: using the debugger function console.logging the hell out of my code relying »