Multiplication (गुणन)
In JavaScript, we can perform the multiplication of two numbers by using the asterisk (*) arithmetic operators.
जाभास्क्रिप्टमा, हामी तारांकन (*) अंकगणितीय अपरेटरहरू प्रयोग गरेर दुई संख्याहरूको गुणन प्रदर्शन गर्न सक्दछौं।
Example:
let resultingValue = 3 * 2;
Here, we stored the product of 3 * 2 into a resultingValue variable.
यहाँ, हामीले 3 * 2 को उत्पादनलाई resultingValue चरमा भण्डारण गर्यौं।
📝 Tasks:
[ ] Write a program to store the product of
23times41and print its value.[ ] '23' पटक '41' को उत्पादन भण्डारण गर्न र यसको मान मुद्रण गर्न एक प्रोग्राम लेख्नुहोस्।
💡 Hints:
Visit the Basic Operators chapter to understand the mathematical operations.
गणितीय सञ्चालनहरू बुझ्न आधारभूत अपरेटरहरू अध्यायमा जानुहोस्।