我有这个代码。我需要遵循此说明,但我不知道该怎么做。 “用返回语句替换分配卡片和得分数据到outputArea的代码 从ShowHand函数返回相同的数据。”
function showHand(hand, score)
{
let cards="";
for(let i=0; i<hand.length; i++)
cards += hand[i].card + '';
outputArea.innerText += cards + "" + score + "\n" ;
};
谢谢
答案 0 :(得分:0)
只需删除 outputArea.innerText
function showHand(hand, score){
let cards="";
let result = [];
for(let i=0; i<hand.length; i++)
cards += hand[i].card + '';
result.push( cards + "" + score + "\n" ) ;
};
return result;
}