--- 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) ```js var sum = 10 + 10; //sum gets the value 20 ```