Skip to content

Instantly share code, notes, and snippets.

View PetiDev's full-sized avatar
😵‍💫
Learning pointless things beacuse i need it in school

PetiDev

😵‍💫
Learning pointless things beacuse i need it in school
View GitHub Profile
@PetiDev
PetiDev / JSON_sort_by_value.js
Last active August 15, 2022 14:05
Sort JSON by value
/**
*
* Uses bubble sort to sort JSON Objects by value,
* useing the condition defined in the callback
*
* @category Object
* @param {Function} callback sorting condition
* @returns {Object} Returns the sorted Object
*
*