var score = 1; function up(){ if(score < 10 ){ score ++; } document.getElementById("result").innerHTML = score; } function down(){ if(score > 1){ score --; } document.getElementById("result").innerHTML = score; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter