This website works better with JavaScript
首頁
探索
說明
註冊
登入
Ethosa
/
Learn
镜像来自
https://github.com/Ethosa/Learn
關注
1
讚好
0
複刻
0
檔案
問題管理
0
Wiki
目錄樹:
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.