Skip to content

Commit

Permalink
Merge fix-cannele-clicker
Browse files Browse the repository at this point in the history
fix(cannele clicker): add script.js file
  • Loading branch information
Mael-RABOT authored May 3, 2024
2 parents 3557e6c + 836a956 commit c454310
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cannele_clicker/Participant/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
var argent = 0;
var fours = 0;

function cuisiner() {
var score = document.getElementById("score");

argent += fours;

score.innerText = argent + "€";
}

0 comments on commit c454310

Please sign in to comment.