Multiplication

suggest change

The multiplication operator (*) perform arithmetic multiplication on numbers (literals or variables).

console.log( 3 *  5); //  15
console.log(-3 *  5); // -15
console.log( 3 * -5); // -15
console.log(-3 * -5); //  15

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents