Câu hỏi
Làm thế nào có thể ghi ra giá trị giống như trong comment khi console.log?
Answer ```javascript
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 = startGam...