FluffypoopoLvl 55
This is all it is if you think I am logging IP's (I do not think code.org is capable of logging an device ID)
getKeyValue("users", function(users) {
if(users == undefined){
setKeyValue("users", 0);
} else {
setKeyValue("users", users + 1);
}
});
getKeyValue("users", function(users){
console.log(("cal has " + users) + " plays");
});