Having this variable:
var edad = 22;
We apply the unary operators: ++ and - -, both before and after the variable, in the following way:
console.log(++edad); \ 23.
console.log(--edad); \ 21.
If we apply at the end:
console.log(edad++); \ 22.
console.log(edad--); \ 22.
What is the difference between the two of them to give such results?