# 135Divide One Number by Another with JavaScript（乘积）

最近更新时间：

说明：

```
我们也可在 JavaScript 中使用乘法运算。

JavaScript 使用这个 * 符号来让两个数字相乘。

举例

myVar = 13 * 13; // 把 169 赋值给 myVar
任务
改变数值 0 来让变量 product 的值等于 80。

Run tests (ctrl + enter)



需要使 product 的值等于 80
使用 * 运算符
```

原始代码：

```
var product = 8 * 0;
```

调试代码：

```
var product = 8 * 10;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://iexam.gitbook.io/fcc/ji-chu/divide-one-number-by-another-with-javascript.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
