Vanilla JavaScript Chicken or Egg?

β€” 2 minute read

permalink

I saw this a couple of days ago and thought it was finally a solution to this ancient problem!

Who was there first the chicken or the egg?

JavaScript Chicken or Egg Sort permalink

const array = ['πŸ₯š', 'πŸ”'];
console.log(array.sort());
// (2) ["πŸ”", "πŸ₯š"]

There you go the answer is Chicken!

But let's dive a bit deeper and see how this then worked out for the egg?

const array2 = ['πŸ”', '🐣', '🐀', 'πŸ₯š'];
console.log(array2.sort());
// (4) ["πŸ”", "🐣", "🐀", "πŸ₯š"]

Hmm weird? Yes this definitely complicates things right?

What are your opinions on this Chicken vs. Egg complication?

View the code on Codepen.

See the Pen Vanilla JavaScript Chicken or Egg? by Chris Bongers (@rebelchris) on CodePen.

Thank you for reading, and let's connect! permalink

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter