Monthly Archives: June, 2021
Life Tips
The Beginner Syndrome
Someone recently reached out to me and asked how am I able to write consistently. Her exact words were: "how do you...
JavaScript
Numeric Separators in JavaScript
Writing performant code is not enough as a developer. We need to ensure that it is readable as well. And it is...
JavaScript
Apply timeout to JavaScript Promises
JavaScript promises do not have any time associated with them. We can use a .then() function and wait until the promise is...
JavaScript
Enforcing coding standards using husky pre-commit hooks
Having consistency and enforcing coding standards becomes very important as an application scales. It becomes important to automate the process to ensure...