“Incremento postfix” Código de respuesta

Incremento postfix

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

Incremento de postfix y prefijo

++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 de prefijo

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

Respuestas similares a “Incremento postfix”

Preguntas similares a “Incremento postfix”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código