* 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
297 B
297 B
title
title |
---|
Add Two Numbers with JavaScript |
Add Two Numbers with JavaScript
Hints
Hint 1
JavaScript uses the +
symbol for addition.
Solutions
Solution 1 (Click to Show/Hide)
var sum = 10 + 10; //sum gets the value 20