jskatas.org Continuously Learn JavaScript. Your Way.

Building the parseInt() Katas

I had planned building the kata for Number.parseInt() already a while ago. Starting to work I discovered very quickly that this seemingly tiny kata is quite a rabbit hole that offers a lot of things one can learn. Especially about how things evolve in the spec and how to read the spec, fortunately this is a pretty easy to read part of the spec.

The kata is in the planning.
The kata is in the planning.

Content

  1. Number.parseInt() and the Global parseInt()
  2. ES1: parseInt()
  3. Diff Between ES1 and ES6
  4. ES5 Introduced one Change
  5. Katas Done
  6. Conclusion

Number.parseInt() and the Global parseInt()

Actually ES6 makes the Number.parseInt() kata very simple. Because it just says it's the same as the global parseInt. Reading the spec it seems this is a simple piece of JavaScript. The kata should be easy to build. It builds on the existing global parseInt function, so what is there left to learn for Number.parseInt()? Can I not just simply link to the ES1 kata for parseInt?

The Number.parseInt spec text.
The Number.parseInt spec text.

In the ES6 kata I currently just plan to have two tests (see image below). And I am thinking of adding a third one that just says "look into the ES1 kata for the global parseInt". And this is where it gets a bit difficult.

To begin with, two tests in this kata.
To begin with, two tests in this kata.

ES1: parseInt()

I looked up the spec archive and in ES1 parseInt was already specified (see image below). But the content in the ES6 spec is quite different (see 2nd image below). The ES1 spec has a list of 26 items defining the global parseInt() function, ES6 only 16.

The ES1 spec text for parseInt.
The ES1 spec text for parseInt.
The ES6 spec text for parseInt, different to ES1.
The ES6 spec text for parseInt, different to ES1.

The change is interesting, since I was always under the assumption that JavaScript only gets extended and never (or only very rarely) changed, so that it stays backwards compatible all the time.

Diff Between ES1 and ES6

Now, I have to decide how to continue for building the kata. I had two choices:

  1. figure out when it changed, between ES1 and ES6, or
  2. read the spec texts carefully and figure out if it matters for my kata.

I went with 1), since I am too lazy for 2) and doubt I get it done this year.

The parseInt spec text changed significantly in ES3. It is still not the same as in ES6 and also different to ES10.

The ES3 spec of parseInt.
The ES3 spec of parseInt.

The original question I wanted to answer was: In which category does the kata for parseInt belong? Into "ES1" or somewhere else? I guess the answer is I put it into ES1 but will use the latest spec to write the kata, and assume the functionality has not changed (significantly).

In case I ever figure out that the functionality of parseInt has changed between ES1 and ES10, I would have to come back and split the parseInt kata and move the changes into the according ESx kata.

ES5 Introduced one Change

One thing changed with ES5 about how parseInt works. "ECMAScript 5 removes octal interpretation" - I am glad this has changed, it did bite me hard once. See below for the entire explanation from MDN. So good to read this, and also to read the hint "always specify a radix".

ECMAScript 5 removes octal interpretation
ECMAScript 5 removes octal interpretation

Katas Done

So I finished two new katas for parseInt. One the ES6 version, the other in ES1 and the in-depth one is just a draft. PR is ready. Input welcome.

Here is what it looks like currently, on my local system, and is probably already merged at the time you are reading this.

The ES1 and ES6 katas.
The ES1 and ES6 katas.

It is live. The ES1 parseInt() kata is live, now. The in-depth one will follow. https://jskatas.org

Conclusion

I would sum up my learning like this:

  • read the spec,
  • get your hands dirty,
  • investigate the roots,
  • you will always learn something along the way.

The best part, is that you never know when the different dots of your knowledge connect. Stay hungry, keep learning.

Find the original thread on twitter where I had first collected some info for this blog post.