Blog
Categories
- Mar 29 2016
Equality and Relational Operators: Comparing the strange relationship between null and 0
Recently I saw a tweet about the relationship between values in JavaScript saying that greater or equals means nothing. The tweet reported the following results: null >= 0 // true null > 0 // false null == 0 // false My experience with the JavaScript language makes me believe that everything has a meaning, even […]
Continue ReadingEquality and Relational Operators: Comparing the strange relationship between null and 0 - Mar 22 2016
Looking at JavaScript with “new” eyes: Digging into the specs to learn more about the new operator
To me, the JavaScript language is as beautiful and unexpectedly wondrous as a mini donkey. If I could propose a new cover for the book Beautiful JavaScript, I would choose this one: The reason I find JavaScript beautiful is that there’s something new to learn everyday. For example, recently I learned some surprising facts about […]
Continue ReadingLooking at JavaScript with “new” eyes: Digging into the specs to learn more about the new operator