zzz / frontend /src /utils /get-random-key.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
193 Bytes
export const getRandomKey = (obj: Record<string, string>) => {
const keys = Object.keys(obj);
const randomKey = keys[Math.floor(Math.random() * keys.length)];
return randomKey;
};