JS generate random boolean

Simple question, but I’m interested in the nuances here. I’m generating random booleans using the following method I came up with myself: const rand = Boolean(Math.round(Math.random())); Whenever random() shows up, it seems there’s always a pitfall – it’s not truly random, it’s compromised by something or other, etc. So, I’d like to know: a) Is … Read more