VOOZH about

URL: https://www.geeksforgeeks.org/javascript/multiplication-arithmetic-operator-in-javascript/

⇱ Multiplication(*) Arithmetic Operator in JavaScript - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Multiplication(*) Arithmetic Operator in JavaScript

Last Updated : 23 Jul, 2025

JavaScript arithmetic multiplication operator is used to find the product of operands. Like if we want the multiplication of any two numbers then this operator can be useful. 

Syntax:

a*b

Return: It returns the roduct of the operands.

Example 1: In this example, we will perform multiplication on Number.

Output:

2000
Infinity
NaN
NaN

Example 2: In this example, we will perform multiplication on string/non-numbers.

Output: The string is converted to its corresponding number type and the string which does not contain any number is converted to NaN

NaN
10000

Supported Browser:

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari

We have a complete list of Javascript Arithmetic operators, to check those please go through this JavaScript Arithmetic Operators article.

Comment
Article Tags: