Help with this problem in javascript

Im confused, i dont know what to do in here


var difference = 12-0;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36

Challenge: Subtract One Number from Another with JavaScript

Link to the challenge:

The code starts as

var difference = 45 - 0;

You changed the 45. You must instead change the 0.

You need to change the 0 to some number that makes 45 - ??? equal to 12

Hey! if you look closely at the instructions, its basically asking you to find a number that will get you 12 if you subtract it from 45.

Hope this helped! :smiley:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.