互联网自留地
let randomSuccess = () => { let num = Math.random(); if (num < .5 ){ return true; } else { return false; } };