freeCodeCamp Challenge Guide: 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)
const sum = 10 + 10; //sum gets the value 20
2 Likes