function areYouGay() {
const cached = localStorage.getItem('isGay');
const isGay = (cached ?? false) ? Number(cached) : Math.random();
localStorage.setItem('isGay', isGay);
return (isGay < 0.5) ? 'Yes' : 'No';
}No comments yet.