I want to add a high score to my game. Right now I have this:
var score = 0;
var highscore = 0;
The score variable works but whenever I get like points so total of 60 points it says the high score is still zero when checking it using console.log(highscore)
.
I have this to store the high score:
if (score > localStorage.getItem("highscore")) {
localStorage.setItem("highscore", score);
}
This does not work properly, but it also doesn't give any errors.
I want to add a high score to my game. Right now I have this:
var score = 0;
var highscore = 0;
The score variable works but whenever I get like points so total of 60 points it says the high score is still zero when checking it using console.log(highscore)
.
I have this to store the high score:
if (score > localStorage.getItem("highscore")) {
localStorage.setItem("highscore", score);
}
This does not work properly, but it also doesn't give any errors.
Share Improve this question edited Mar 31, 2015 at 13:58 Qantas 94 Heavy 16k31 gold badges72 silver badges88 bronze badges asked Mar 31, 2015 at 13:36 superman123superman123 1011 gold badge2 silver badges8 bronze badges 1- Just a thought to your pastebin, you might want to convert your variables to objects, would help a lot :) – SNYDERHAUS Commented Mar 31, 2015 at 13:52
5 Answers
Reset to default 3Try this:
var score = 0;
var highscore = localStorage.getItem("highscore");
if(highscore !== null){
if (score > highscore) {
localStorage.setItem("highscore", score);
}
}
else{
localStorage.setItem("highscore", score);
}
In addition to the parseInt
, you need to set the init value on the localStorage
first because localStorage.getItem("highscore",10)
doesn't returns 10 as default value if is not setted
var score = 0;
var highscore = 0;
localStorage.setItem("highscore",0);
Because when you check
if (score > parseInt(localStorage.getItem("highscore"))) {
localStorage.setItem("highscore", score);
}
The localStorage.getItem("highscore")
will return null if the item is not setted yet. Or you can also do:
var storagedHighScore = localStorage.getItem("highscore");
if (storagedHighScore || score > parseInt(storagedHighScore)) {
localStorage.setItem("highscore", score);
}
You need to retrieve the value from localStorage with
highscore = +localStorage.getItem("highscore")
or some equivalent code. Items in localStorage
don't track the global variables with the same names.
if (score > parseInt(localStorage.getItem('highscore'), 10)) {
localStorage.setItem('highscore', score);
}
convert into int before paring. its string
I just reviewed your code in http://jsfiddle/unb8yLj3/ and i couldn't find in what part you increase the score so when this part of code run score is 0 and localStorage.getItem("highscore") is 10 therefore it doesn't set highscore.
if (score > localStorage.getItem("highscore")) {
localStorage.setItem("highscore", score);
}
}
Is there another js file that does increase the score?