UNPKG

bounouar-my-exercices

Version:
6 lines 137 B
export const my_sum = (a, b) => { if (typeof(a) === "number" && typeof(b) === "number") { return a + b; } return 0; }