JavaScript - Multiplication: *

Multiplication is a matematical operation, it can be used for integers and real numbers.multiplication is an associative operation, therefore order of operands is important. it is necessary to pay attention to the type of output was large enough, otherwise the operation can easily cause an overflow. for example, multiplying two 16-bit numbers we need to put at least 32-bit variable, to prevent overflow.

*

Description

par1 * par2
Used keywords: *

Input


Output

Examples

JavaScript

Multiplication the possible of use:
x = 10 * 5;      // x=50
y = 100 * 1.2;   // y=120
z = (x / 5) * 10;// z=100

JavaScript

Even one example in what situations we can use the operation multiplication:
i * 0xFF
10 * 3.14
(10 - j * 0.5) * 2

JavaScript

Other pieces of example codes:
y = 4 * 0xff
x <= y * 5
y = 4 * 077
y = x * 3.14
i = x * 5
10 * 5 -j

You can find it in the following collections: arithmetic operators
Languages: en hu cz sk