freeCodeCamp/guide/arabic/javascript/tutorials/perform-arithmetic-operatio.../index.md

8 lines
372 B
Markdown
Raw Normal View History

---
title: Perform Arithmetic Operations on Decimals with JavaScript
localeTitle: تنفيذ العمليات الحسابية على الكسور العشرية مع JavaScript
---
في JavaScript ، يمكنك إجراء عمليات حسابية بأرقام عشرية ، تمامًا مثل الأرقام الصحيحة.
`var quotient = 4.4 / 2.0; // equals 2.2
`