Maybe
const returnHundred = function returnHundred () { const num = Math.floor(Math.random() * 1000) return num === 100 ? num : returnHundred() }
Loading collection data...
Maybe
const returnHundred = function returnHundred () { const num = Math.floor(Math.random() * 1000) return num === 100 ? num : returnHundred() }