現在ゲームを設計しており、そのアイデアはハイ スコアのアイデアであるため、現在のスコアがローカル ストレージのスコアよりも大きい場合は置き換えられます。
localStorage.setItem('highScore', highScore);
var HighScore = localStorage.getItem('highScore');
if (HighScore == null || HighScore == "null") {
HighScore = 0;
}
if (user.points > HighScore) {
highScore = parseInt(HighScore);
}
return highScore
みんなありがとう