What ever the framework may be, it is often handy to have bootstrap in your favorite application. With it’s plethora of styling definitions, bootstrap indeed is favorite for all web developers, let’s get started. Firstly, install bootstrap in your project by following command. npm install bootstrap Open angular.json that is in your root...
Check if an array contains duplicate values, without using arrays
Do you want to write a javascript or typescript function which checks if an array contains duplicate values or not? And without using any array iterations in your function? There is an easy solution for that and that is Set. The Set allows you to store unique values of any type, it could be...