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
Steps Description
- Declare three variables
a, b
andc
- Initialize both variables with value of 5 and 3 respectively
a=5, b=3
- Assign
c
variable with Assignment Operators (=
) with the multiplie/गुड़ा value of variablesa
andb
a, b
variables की value को (*
) Multiplication Operators ki सहयता सेa*b
numbers को multiplie/गुड़ा किया गया हैंconsole.log
inbuilt function की मदद्द सेc
variable की value को display किया गया हैं
by : Suhel Akhtar
Quick Summary:
Multiplication Operator JavaScript Language