This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng ký
Đăng nhập
Ethosa
/
Learn
mirror of
https://github.com/Ethosa/Learn
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Tree:
5ca0001a70
Branches
Tags
main
Learn
/
Languages
/
js-rush
/
task3
Ethosa
f085424687
add `js-rush` folder
3 năm trước cách đây
..
main.js
f085424687
add `js-rush` folder
3 năm trước cách đây
readme.md
f085424687
add `js-rush` folder
3 năm trước cách đây
readme.md
Return the Next Number from the Integer Passed
Create a function that takes a number as an argument, increments the number by +1 and returns the result.
Examples
addition(0) ➞ 1 addition(9) ➞ 10 addition(-3) ➞ -2
Notes
Don't forget to
return
the result.