This website works better with JavaScript
صفحهٔ اصلی
گشتوگذار
راهنما
ثبت نام
ورود
Ethosa
/
Learn
mirrorاز
https://github.com/Ethosa/Learn
دنبال کردن
1
ستاره دار
0
انشعاب
0
پروندهها
مشکلات
0
ویکی
درخت:
f085424687
شاخهها
تگها
main
Learn
/
Languages
/
js-rush
/
task1
/
readme.md
readme.md
253 B
تاريخچه
خام
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.