Testing a JavaScript "Random Sampler"
I will wear my statistician hat as I scrutinize this JS one-liner:
const getRandomItem =
(items) => items[Math.floor(Math.random() * items.length)];
I saw it in a video by James Q Quick, which was referencing a freeCodeCamp article. This is supp...
wipdev.hashnode.dev4 min read