2013-02

JavaScript’s regular expressions are more fun with XRegExp

[2013-02-12] dev, javascript, jslib, jslang
Reminder: As soon as your JavaScript regular expressions become more complicated, you should probably use Steven Levithan’s XRegExp library. The cool thing about XRegExp is that it internally compiles its extended regular expressions to normal regular expressions, meaning that they are fast. Let’s look at some of XRegExp’s highlights, quoted from the XRegExp website.

Learning JavaScript via other languages

[2013-02-06] dev, javascript, jslang
Looking back on my life, three programming languages prepared me well for JavaScript (which has some challenging aspects):

JavaScript: fixing categorization

[2013-02-03] dev, javascript, jslang
Categorizing values in JavaScript is quirky. This blog post explains the quirks and one approach to fixing them. To understand everything, it helps to be familiar with how values are categorized in JavaScript. If you aren’t, consult [1].

2013-01

parseInt() doesn’t always correctly convert to integer

[2013-01-29] numbers, dev, javascript, jsint, jslang
In JavaScript, all numbers are floating point. Integers are floating point numbers without a fraction. Converting a number n to an integer means finding the integer that is “closest” to n (where “closest” is a matter of definition). You might think that parseInt() performs this task, but it doesn’t. At least, not always.

JavaScripts 12 größte Fallgruben

[2013-01-27] dev, javascript, deutsch, jslang
[Dieser Blogpost ist die Langversion eines Artikels im CHIP Web Design 2013.]

JavaScript ist eigentlich eine recht kompakte Sprache. Wenn es nur nicht all diese Fallgruben gäbe... Dieser Artikel erklärt die 12 größten und wie man am besten mit ihnen umgeht. Zur Lektüre werden grundlegende JavaScript-Kenntnisse vorausgesetzt. Wir halten uns an die aktuelle Version von JavaScript, ECMAScript 5.

Web development: 2012 and forward

[2013-01-22] dev, html5, webdev
Functionn is a blog on open source web development. Today, they published an interview with me and several other people (including DailyJS’s Alex R. Young) covering various web-development-related topics. They asked the following questions:

Categorizing values in JavaScript

[2013-01-20] dev, javascript, advancedjs, jslang
This post examines four ways in which values can be categorized in JavaScript: via the hidden property [[Class]], via the typeof operator, via the instanceof operator and via the function Array.isArray(). We’ll also look at the prototype objects of built-in constructors, which produce unexpected categorization results.

Responsive web design versus adaptive web design

[2013-01-16] dev, web design, webdev
This blog post looks at the difference between responsive web design and adaptive web design. Before we can get started, we need to define another concept: progressive enhancement.

Graph search: Facebook as a database

[2013-01-15] semantic web, social, computers, facebook
Today, Facebook introduced a new feature called “graph search”. This blog post explains what it is. It is based on the Verge’s liveblog of the event.

ECMAScript.next: TC39’s November 2012 meeting

[2013-01-13] esnext, tc39, dev, javascript
From November 27-29, 2012, the Ecma Technical Committee 39 (TC39, [1]) had another meeting, where decisions were made about ECMAScript.next (the code name for ECMAScript 6 [1]). This blog post summarizes and explains the highlights. It is based on Rick Waldrons excellent notes that he put up on GitHub. There is also a list of all 2ality posts on TC39 meetings.