Skip to content

Challenge Subtract One Number From Another With JavaScript

Quincy Larson edited this page Aug 20, 2016 · 1 revision

Challenge Subtract One Number from Another with JavaScript

We can also subtract one number from another.

JavaScript uses use the - symbol for subtraction.

var difference = 45 - 33;
Clone this wiki locally