News Score: Score the News, Sort the News, Rewrite the Headlines

Exploring Randomness In JavaScript

In my post yesterday, on building a color palette utility in Alpine.js, randomness played a big part: each swatch was generated as a composite of randomly selected Hue (0..360), Saturation (0..100), and Lightness (0..100) values. As I was putting that demo together, I came across the Web Crypto API. Normally, when generating random values, I use the the Math.random() method; but, the MDN docs mention that Crypto.getRandomValues() is more secure. As such, I ended up trying Crypto out (with a fall...

Read more at bennadel.com

© News Score  score the news, sort the news, rewrite the headlines