This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
Ethosa
/
Learn
mirror da
https://github.com/Ethosa/Learn
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Albero (Tree):
5ca0001a70
Rami (Branch)
Tag
main
Learn
/
Languages
/
js-rush
/
task3
Ethosa
f085424687
add `js-rush` folder
3 anni fa
..
main.js
f085424687
add `js-rush` folder
3 anni fa
readme.md
f085424687
add `js-rush` folder
3 anni fa
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.