Skip to content

Instantly share code, notes, and snippets.

@aminechraibi
aminechraibi / js_array_stats.js
Created September 18, 2022 00:55
Get stats of an array of objects (not nested)
const COUNT_REST_NAME = "other+"
function getColumnsFromJson(json) {
return [...new Set(json.reduce(function (keys, element) {
for (let key in element) {
keys.push(key);
}
return keys;
}, []))];
}