generater 初理解
程序员文章站
2022-07-05 23:23:31
...
function* comparePrice(){
while(true){
yield Math.random()*100
}
}
var limitPrice = 50
var price = 100
while(price > limitPrice){
console.log(`this is price ${price}`)
price = comparePrice().next().value
}
console.log(`this is lastPrice ${price}`)
// this is price 62.20384758361717
// this is lastPrice 32.9677543460043
下一篇: druid查询技巧(持续更新)