This website works better with JavaScript
Home
Explore
Help
Register
Sign In
Ethosa
/
Learn
mirror of
https://github.com/Ethosa/Learn
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Tree:
f085424687
Branches
Tags
main
Learn
/
Languages
/
js-rush
/
task1
/
readme.md
readme.md
253 B
History
Raw
Return the Sum of Two Numbers
Create a function that takes two numbers as arguments and return their sum.
Examples
addition(3, 2) ➞ 5 addition(-3, -6) ➞ -9 addition(7, 3) ➞ 10
Notes
Don't forget to return the result.