May 16, 2023
Program to use Multiplication Operator JavaScript Language
let a = 5;
let b = 3;
let c;
c = a * b;
console.log("c = ", c);
Output
c = 15
by : Suhel Akhtar
Quick Summary:
Multiplication Operator JavaScript Language