This was my third time participating in the js13kGames contest. I won in 2018 with Underrun and utterly failed to deliver any compelling gameplay with my 2019 entry Voidcall. (more…)
Read more »
The import() operator lets us dynamically load ECMAScript modules. But they can also be used to evaluate JavaScript code (as Andrea Giammarchi recently pointed out to me), as an alternative to eval(). This blog post explains how that works. (more…)
Read more »
KBall and Nick dive deep with Chris Manson and Jen Weber from the Ember core team. They talk about Ember.js: What it is, why it’s different, what’s new in the Ember Octane release, and what’s exciting in the future of the project. (more…)
Read more »
The typeof operator in JavaScript evaluates and returns a string with the data type of an operand. For example, to find the type of 123, we would write - typeof 123 This will return a string with the type of 123, which, in this case, will be "number". I... (more…)
Read more »
Physical Quantities and Measures (PQM) is a Node and browser package for dealing with numbers with units - GitHub - GhostWrench/pqm: Physical Quantities and Measures (PQM) is a Node and browser pac... (more…)
Read more »