Having a confirmation dialogs is a very common requirement in the applications nowadays. They are used when a specific(in most cases destructive) action is executed, like deleting a specific record.
Continue readingHow to convert CSV to JSON in Node.JS
Reading a CSV file and parsing it to JSON is an easy-peasy job in Node.JS. Something important that you need to take into consideration before continue to implement the solutions
Continue readingDisplay a loader on every HTTP request using Interceptor in Angular 7
As you may already know, as of version 4.3, Angular introduced a new HttpClient. One of the main features of this client is interception – a way to declare interceptors,
Continue readingRemove duplicate values from Javascript array – How to & Performance comparison
The purpose of this article is to share with you the best ways to remove duplicate PRIMITIVE(strings, numbers and booleans) values from an array in Javascript and compare their performance
Continue reading