* fix: restructure certifications guide articles * fix: added 3 dashes line before prob expl * fix: added 3 dashes line before hints * fix: added 3 dashes line before solutions
238 B
238 B
title
| title |
|---|
| Multiply Two Numbers with JavaScript |
Multiply Two Numbers with JavaScript
Hints
Hint 1
JavaScript uses the * symbol for multiplication.
var product = 8 * 10; //product gets the value 80