A fast implementation of the VSOP87 theory in JavaScript

πŸͺ A fast implementation of the VSOP87 theory in JavaScript. – gmarty/vsop87… Read more

Similar

How to Capitalize Strings in JavaScript

To capitalize a string in Javascript so the first character is in uppercase, we don’t need to add another NPM dependency. We can use plain JavaScript or even CSS if it is solely for presentational purposes. TLDR; const chars = 'hello' chars[0].toUpperCase... (more…)

Read more »

JavaScript closures in detail

As the title states, JavaScript closures have always been a bit of a mystery to me. I have read multiple articles, I have used closures in my work, sometimes I even used a closure without realizing I… (more…)

Read more »