“Incremento pós -fix” Respostas de código

Incremento pós -fix

let x = 3;
y = x++;
Owlthegentleman

Incremento pós -fixo e prefixo

++x = x is now 2
x++ = x is now 3 but the showed value remains 2
x = is 3

x = 2 + (2 * 3)
x = 8
Puzzled Piranha

Incremento prefixo

let a = 2;
b = ++a;
Owlthegentleman

Respostas semelhantes a “Incremento pós -fix”

Perguntas semelhantes a “Incremento pós -fix”

Procure respostas de código populares por idioma

Procurar outros idiomas de código