When we think of sorting arrays in JavaScript, we usually imagine strings, numbers, or even objects being organized in ascending or descending order. But what happens when the elements of the array are emojis? The answer might surprise you, especially when skin-tone modifiers come into play!
In this blog, we’ll dive into how JavaScript handles sorting emojis, explore the Fitzpatrick scale that influences this behavior, and showcase some quirky examples along the way.
The Example
Let’s start with the code snippet from the screenshot:
["??", "??", "??", "??", "??"].sort();
When executed, this code produces the following output:
["??", "??", "??", "??", "??"]
At first glance, you might wonder, What just happened? The emojis were sorted in a "light-to-dark" order. To understand why this happens, we need to peek under the hood of JavaScript and Unicode.
What’s Really Happening?
1. How Emojis Work
Every emoji is represented by a unique Unicode code point. For example:
- ? is represented by U 1F469.
- ? (a skin-tone modifier) is represented by U 1F3FF.
When an emoji like "??" is displayed, it is actually a combination of two Unicode characters:
- The base emoji (?).
- A skin-tone modifier (?).
2. Sorting in JavaScript
The .sort() method in JavaScript works by comparing the Unicode values of array elements, treating them as strings by default. This means that the sorting order of emojis is determined by their underlying Unicode values.
3. Fitzpatrick Scale
The Fitzpatrick scale is a classification system for human skin tones, ranging from Type I (lightest) to Type VI (darkest). Unicode adopted this scale to introduce skin-tone diversity in emojis. Here’s how the modifiers correspond to the Fitzpatrick scale:
- ? (Type I): Light
- ? (Type II): Light-Medium
- ? (Type III): Medium
- ? (Type IV): Medium-Dark
- ? (Type V): Dark
When sorting emojis with these modifiers, JavaScript essentially orders them based on the numeric value of the skin-tone modifiers, which corresponds to the Fitzpatrick scale.
Let’s See This in Action
Here’s a practical demonstration:
["??", "??", "??", "??", "??"].sort();
Breaking It Down
- The .sort() method compares the Unicode values of each emoji.
- The skin-tone modifiers (?, ?, etc.) have increasing Unicode values.
- This results in the emojis being sorted from lightest (?) to darkest (?).
Fun Experiments
Let’s try a few variations and observe the results.
1. Mixed Emojis
What happens if we include base emojis without skin-tone modifiers?
["??", "??", "??", "??", "??"]
Output:
// Array of emojis with skin-tone modifiers const emojis = ["??", "??", "??", "??", "??"]; // Sort the array const sortedEmojis = emojis.sort(); // Log the sorted array console.log(sortedEmojis); // Output: ["??", "??", "??", "??", "??"]
Here, the base emoji ? comes first because it has the smallest Unicode value, followed by the sorted skin-tone variants.
2. Sorting Other Emoji Groups
What if we sort other emoji groups with modifiers, like hand gestures?
const mixedEmojis = ["??", "??", "?", "??", "??", "??"]; console.log(mixedEmojis.sort());
Output:
["?", "??", "??", "??", "??", "??"]
Once again, the emojis are sorted based on the Fitzpatrick scale.
Unicode Behind the Scenes
To understand the sorting behavior more deeply, let’s inspect the Unicode values of each emoji:
const handEmojis = ["??", "??", "??", "??", "??"]; console.log(handEmojis.sort());
This will log the Unicode values of the base emoji and its modifiers. You’ll notice the incremental increase in values for the skin-tone modifiers.
Further Reading
- Unicode Technical Standard #51
- MDN: Array.prototype.sort()
The above is the detailed content of Decoding JavaScript Emoji Sorting with the Fitzpatrick Scale. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!
