freeCodeCamp/guide/english/javascript/tutorials/subtract-one-number-from-an.../index.md

8 lines
191 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: 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;