This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
Ethosa
/
Learn
miroir de
https://github.com/Ethosa/Learn
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Wiki
Aborescence:
f085424687
Branches
Tags
main
Learn
/
Languages
/
js-rush
/
task1
/
readme.md
readme.md
253 B
Historique
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.