This website works better with JavaScript
Home
Verkennen
Help
Registreren
Inloggen
Ethosa
/
Learn
spiegel van
https://github.com/Ethosa/Learn
Volgen
1
Ster
0
Vork
0
Bestanden
Issues
0
Wiki
Boom:
f085424687
Aftakkingen
Labels
main
Learn
/
Languages
/
js-rush
/
task3
Ethosa
f085424687
add `js-rush` folder
3 jaren geleden
..
main.js
f085424687
add `js-rush` folder
3 jaren geleden
readme.md
f085424687
add `js-rush` folder
3 jaren geleden
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.