Casual Parsing in JavaScript

Over the last year and a half I’ve gotten really into writing parsers and
parser-adjacent things like interpreters, transpilers, etc. I’ve done most of
these projects in JavaScript, and I’ve settled into a nice little pattern that
I re-use across projects… Read more

Similar

JavaScript Reverse Transpiler

We’ve detected that JavaScript is disabled in this browser. Please enable JavaScript or switch to a supported browser to continue using twitter.com. You can see a list of supported browsers in our Help Center. (more…)

Read more »

What the Heck Is ~~ In JavaScript?

A note on bit-wise operations Today I read some JavaScript source code and stumbled on a line like var delta = ~~time; and I was unsure what that purpose of using ~~ was. So I started to research and digging a bit deeper. It turns out that the binary not ... (more…)

Read more »