Category: JavaScript
-
Angular SSR vs Next.js – How Each Framework Handles SEO Metadata
Angular and Next.js both render SEO metadata server-side – but they take fundamentally different approaches. One is imperative (manual service calls). The other is declarative (metadata export). Here’s how they compare in real-world production code.
-

📅 How to Format and order dd-mm-yyyy Dates in jQuery DataTables 📅
If you’ve ever worked with DataTables, you may have encountered issues with how dates are displayed. By default, DataTables will display dates in a format that may not be easily readable or sortable. However, with a few simple tweaks, you can format your dates to display exactly how you want them. First of all your…
-

Working with Null dates in DateRange Picker.
👋 Hey there! I recently worked on implementing a date range picker using the Daterangepicker plugin in my web application. It was a bit of a challenge at first, but I learned a lot from the experience. One of the main issues I encountered was how to handle null dates with moment.js library. I found…