+ 1
How do you add two numbers in java script?
java script
5 Answers
+ 4
This is one way:
console.log(5+6);
+ 4
sololearn has already the answer ;D
https://www.sololearn.com/learn/JavaScript/1130/
+ 2
thank you it really help
+ 2
If you have 1 and 7 (just an example) you can add them by just simply doing 1+7. If you want to display it use either:
console.log(1+7)
or
document.write(1+7).
Was this helpful?đ
0
a = 5 + 3;
alert(a);
//the alert is just to show the result
//you can also add variables if they are numbers
b = 3;
c = 5;
a = b + c;
alert(a);