0
What does * means in JavaScript
* sign
2 Antworten
+ 5
It means multiplication
The multiplication operator (*) multiplies one number by the other.
Example:
var x = 10 * 5;
document.write(x);
OUTPUT:: 50
https://www.sololearn.com/learn/JavaScript/1130/