This website works better with JavaScript
Inicio
Explorar
Ayuda
Registro
Iniciar sesión
Ethosa
/
Learn
espejo de
https://github.com/Ethosa/Learn
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Árbol:
f085424687
Ramas
Etiquetas
main
Learn
/
Languages
/
js-rush
/
task1
/
readme.md
readme.md
253 B
Histórico
Raw
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.