This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

multiplication

Summary

Multiplies the value of two expressions.

Syntax

result = number1 * number2
result
Any variable.
number1
Any expression.
number2
Any expression.

Examples

var x = 5;
var y;
y = x * 2; // result: y = 10

See also

Other articles

Attributions

  • Microsoft Developer Network: Article