Preview:
let sum=null;
for (let i=0; i < 10; i++) {
let value = +prompt("enter a number:", ''); 
if (!value || value >10) {
    break
}
sum += value;
console.log(sum);
}
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