JavaScript уменьшение

// Increment
let a = 1;
a++;
++a;
// Decrement
let b = 1;
b--;
--b;
DaWildOne