...
/Custom TypeScript PropertiesOfType Function
Custom TypeScript PropertiesOfType Function
Learn to create a custom TypeScript type called PropertiesOfType that improves the sort function.
We'll cover the following...
We’ve built a powerful generic search function, capable of sorting in both ascending and descending fashion, but there is still an improvement that can be made. A problem arises from the fact that we use both the greater than (>
) and less than (<
) symbols in our genericSort
function. These operators don’t make much sense when comparing JavaScript primitive types like Symbol
, ...