Làm thế nào có thể ghi ra giá trị giống như trong comment khi console.log
?
Làm thế nào có thể ghi ra giá trị giống như trong comment khi console.log
?
function* startGame() {
const answer = yield "Do you love JavaScript?";
if (answer !== "Yes") {
return "Oh wow... Guess we're gone here";
}
return "JavaScript loves you back ❤️";
}
const game = startGame();
console.log(/* 1 */); // Do you love JavaScript?
console.log(/* 2 */); // JavaScript loves you back ❤️
game.next("Yes").value
and game.next().value
game.next.value("Yes")
and game.next.value()
game.next().value
and game.next("Yes").value
game.next.value()
and game.next.value("Yes")
Một generator sẽ "tạm...
middle
Gợi ý câu hỏi phỏng vấn
Chưa có bình luận nào