UNPKG
bounouar-my-exercices
Version:
latest (0.9.1)
0.9.1
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.1.0
gitlab.com/Detenp/bounouar-my-exercices
bounouar-my-exercices
/
day-1
/
exercise-0.js
6 lines
•
137 B
JavaScript
View Raw
1
2
3
4
5
6
export
const
my_sum = (a, b) => {
if
(
typeof
(a) ===
"number"
&&
typeof
(b) ===
"number"
) {
return
a + b; }
return
0
; }