Hidden Gems in Modern JavaScript You Should be Using: Part 2

Hidden Gems in Modern JavaScript You Should Be Using: Part 2

Last month we reviewed some hidden gems in JavaScript involving operators that help with writing more efficient, readable, and maintainable code. This month we’ll take a look at some useful functions for arrays that help in similar ways. Arrays are a very common data structure in programming, and with their use comes the need to…

Read More

Hidden Gems in Modern JavaScript You Should Be Using: Part 1

JavaScript Coding Tips

JavaScript has evolved dramatically in recent years, with big updates and features such as ES6 classes and async/await. It has also introduced powerful new operators and methods that often fly under the radar. These “hidden gems” include new operators such as the nullish coalescing and optional chaining operators for null checking and the spread, rest,…

Read More

Web Application Performance: Part One

Web Application Performance Part One

Web performance is a critical but misunderstood aspect of web application development. This multi-part series will guide you through the essential aspects of web performance, including defining “fast” and determining which metrics we track, how to measure these metrics, and optimization strategies that will help optimize your application’s performance. What is “fast?” “We need this…

Read More