An experimental JavaScript toolchain. Contribute to facebookexperimental/rome development by creating an account on GitHub. (more…)
Read more »
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 »
One Line implementation for catching error(s) and getting result(s)... (more…)
Read more »
Sets allow the creation of collections of unique values. See how they are used in this quick intro. (more…)
Read more »