samdenty / console-feed

Captures console.log's into a React Component 🔥
https://stackblitz.com/~/github.com/samdenty/console-feed
MIT License
670 stars 109 forks source link

Incorrect logs after sorting array twice #66

Open MatthewCaseres opened 4 years ago

MatthewCaseres commented 4 years ago

Send the following to the console:

let betterNow = [1,2000,3000,4]
//ascending
betterNow.sort((a,b) => a-b)
console.log(betterNow)
//descending
betterNow.sort((a,b) => b-a)
console.log(betterNow)

results in: image