JSFiddle - React, Tailwind, and code Playground

by Frank Liu

JavaScript

let x = [10, 3, 2,1];

console.log(x.sort(
	(a,b)=>a-b 
));