Skip to content

Challenge Perform Arithmetic Operations On Decimals With JavaScript

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

Challenge Perform Arithmetic Operations on Decimals with JavaScript

In JavaScript, you can perform calculations with decimal numbers, just like whole numbers.

var quotient = 4.4 / 2.0; // equals 2.2
Clone this wiki locally