Use ++ to add and -- to subtract :
let count = 5
count++ // count is now 6
count-- // count is now 5 again
These are shortcuts for count += 1 and count -= 1. You'll use them constantly in loops:
for (let i = 0; i < 10; i++) {
console.log(i)
}
The i++ in the loop header increments i after each iteration.