Sort array on multiple fields using JavaScript

Sorting, filtering, and searching are very common scenarios during development. In this article, I show you how to sort array on multiple fields using JavaScript.  Suppose you have an array of objects that contains several columns/fields. Now you have to sort the array on multiple fields like on Title and Date. The date would beSorting, filtering, and searching are very common scenarios during development. In this article, I show you how to sort array on multiple fields using JavaScript.  Suppose you have an array of objects that contains several columns/fields. Now you have to sort the array on multiple fields like on Title and Date. The date would be […]

Read More…

Display none opposite in CSS

In this article, I show you how to use display none in CSS and what is the display none opposite in CSS. Let’s first understand what is display none property what it actually does.   display none in CSS The display none property in CSS is used to hide any element. Suppose you have oneIn this article, I show you how to use display none in CSS and what is the display none opposite in CSS. Let’s first understand what is display none property what it actually does.   display none in CSS The display none property in CSS is used to hide any element. Suppose you have one […]

Read More…

Posted in css

Java Collections Sort

During development, you come across the situation when you have to sort the collection. In many scenarios, data sorting is required like display sorted data or the user preference come should come on top. In this article, I show you how the Java collections sort method works with examples.   Java Collections sort method Collections.sort()During development, you come across the situation when you have to sort the collection. In many scenarios, data sorting is required like display sorted data or the user preference come should come on top. In this article, I show you how the Java collections sort method works with examples.   Java Collections sort method Collections.sort() […]

Read More…

Pseudo before, after and hover in SCSS

The Client-side development is growing people migrated from server-side to client-side code. Now organizations are using React and Angular to develop solutions.  With these technologies, SCSS become popular because it provides cleaner nested syntax. In this article, we learn how to use pseudo-elements such as – before, after and hover in SCSS.     SCSSThe Client-side development is growing people migrated from server-side to client-side code. Now organizations are using React and Angular to develop solutions.  With these technologies, SCSS become popular because it provides cleaner nested syntax. In this article, we learn how to use pseudo-elements such as – before, after and hover in SCSS.     SCSS […]

Read More…

PowerShell Comments Multiple lines

A comment is an important part of development through comments we determine what the program is doing. By placing human-readable comments others can also understand and maintain the program. In this article, I will show you how to use PowerShell comments multiple lines as well as single lines.   PowerShell Comments Multiple Lines – PeopleA comment is an important part of development through comments we determine what the program is doing. By placing human-readable comments others can also understand and maintain the program. In this article, I will show you how to use PowerShell comments multiple lines as well as single lines.   PowerShell Comments Multiple Lines – People […]

Read More…