freeCodeCamp/guide/chinese/javascript/tutorials/divide-one-number-by-anothe.../index.md

9 lines
179 B
Markdown
Raw Normal View History

---
title: Divide One Number by Another with JavaScript
localeTitle: 用JavaScript划分一个号码
---
JavaScript使用`/`符号进行划分。
```
var quotient = 66 / 33;
```