Day 18 of the JavaScript Learning Challenge. This time was dedicated to reversing an array. This exercise was pretty straight-forward though I did have to peek at the second solution to see how they figured out the middle of the array. Sadly once you hit the "reveal code" button it …
read more30 Day JavaScript Learning Challenge: Day 17
Playing with the exercises in chapter 4 of Eloquent Javascript.
Today's frustration: Default Arguments.
That is all.
read more30 Day JavaScript Learning Challenge: Day 16
Day 16 and once again JavaScript doesn't fail to bring about a WTF moment.
Consider the following object:
var anObject = {left: 1, right: 2};
if we call each of the methods of this object it does what we expect:
> anObject.left 1 > anObject.right; 2
But here's the kicker. Let's …
read more30 Day JavaScript Learning Challenge: Day 15
Nothing today. The resistance is strong, and I'm very close to giving up again. I don't like this language and never have. If it disappeared tomorrow I'd shed no tears. It represents everything that I hate about web programming and because it is pretty much a standard that won't go …
read more30 Day JavaScript Learning Challenge: Day 14
Day 14 started up Chapter 4 of Eloquent Javascriot. This portion started up with arrays, which got me into a tangent on playing with passing an array to a function. Take for instance:
> Math.max(1, 2, 3); 3
You'd think that the following would work:
read more> var arr = [1, 2 …