Hello,
I ́m trying to make a to do list with score, I can manually add points to the score and add new task with their own description and reward points but I dont know how to make the code for the task's button ( if I use the same code It will add the points of the first task to the final score)
Code:
var val = Number(Apperyio("TaskPoints").text());
var act= Number(Apperyio('Score').text());
var valor = act + val ;
Apperyio('Score').text(valor);
Thanks!