OMG, you are a genius! Thank you so much, I can’t believe that worked.
Steps to Execute the Code:
- Load ChatGPT.
- Press F12 to open the Developer Tools.
- Go to the Console tab.
- Inject the following code:
if (!Array.prototype.toSorted) {
Array.prototype.toSorted = function(compareFn) {
compareFn = compareFn || ((a, b) => String(a).localeCompare(b));
const arrayCopy = [...this];
return arrayCopy.sort(compareFn);
};
}