This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
Ethosa
/
Learn
kopia lustrzana
https://github.com/Ethosa/Learn
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Drzewo:
5ca0001a70
Gałęzie
Tagi
main
Learn
/
Languages
/
js-rush
/
task3
Ethosa
f085424687
add `js-rush` folder
3 lat temu
..
main.js
f085424687
add `js-rush` folder
3 lat temu
readme.md
f085424687
add `js-rush` folder
3 lat temu
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.