Skip to content

Instantly share code, notes, and snippets.

View armenic's full-sized avatar
🤗

Edgar Manukyan armenic

🤗
  • https://www.roche.com/
  • Toronto, Canada
View GitHub Profile
@armenic
armenic / sortObjectIntoArray.js
Created May 18, 2022 02:06
JavaScript Sort Object by Values Into Array of Objects
import assert from "assert";
function main() {
let obj = {
big: 4,
biggest: 6,
bigger: 5,
small: 1,
};