JavaScript básico - Resta un número de otro con JavaScript

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

Tu código hasta el momento

const difference = 12 - 0;  //Está bien
const difference 45-0; //You should only subtract one number from 45 (es lo que me sale).

Si alguien me pudiese ayudar…

Información de tu navegador:

Desafío: JavaScript básico - Resta un número de otro con JavaScript

Enlaza al desafío:

You should on change the original line:

const difference = 45 - 0;

Do not add any other lines of code.

You need to subtract a different number from 45 so that difference equals 12. You will change the 0 to this different number.

1 Like

thanks! ¡Gracias! Randell