2012-03-29
Converting a value to string in JavaScript
2012-03-28
Arguments in favor or the “iPad mini”
2012-03-27
Learn before going to sleep, remember better
2012-03-26
CSS Grid Layout is coming to Firefox in 2012
In case you are wondering whether “CSS Grid” is the same as “CSS Grid Layout”, there are several similarly named specifications floating around, but they really are just different versions of the same standard:
- “CSS Grid Positioning Module Level 3” (5 September 2007)
- “Grid Layout” (22 March 2012)
- W3C Editor’s Draft: “CSS Grid Layout” (22 March 2012)
Example layout:
![]() |
Explanations:
[Source of image: “CSS Grid Layout”]
|
References
2012-03-23
JavaScript’s two zeros
2012-03-22
Dallas Fed advocates breaking up large banks
2012-03-19
Israelis and Iranians use Facebook to declare their solidarity
2012-03-18
What are the most popular JavaScript keywords?
Oracle discusses the features of Java 8, 9, and 10
2012-03-15
7 foods experts won’t eat
2012-03-14
Stricter equality in JavaScript
Most JavaScript programmers are aware that “normal” equality (==) should be avoided in favor of strict equality (===) [1]. However, every now and then you need something even stricter than ===: If you want to check for NaN or if you want to distinguish between -0 and +0. This blog post explains the details and ECMAScript.next’s [2] solution, the “is” operator.
2012-03-13
SpeechJammer – a gun that makes it difficult to talk
2012-03-12
Displaying numbers in JavaScript
2012-03-11
“Movie: The Movie” – a funny, star-studded fake trailer
2012-03-08
Apple’s 2012 iPad event: the highlights
This post summarizes what Apple has introduced yesterday.
2012-03-07
The jQuery Foundation has been created
2012-03-03
Private data for objects in JavaScript
JavaScript does not come with dedicated means for managing private data for an object. This post describes five techniques for working around that limitation:
