UNPKG

podesta-my-exercises

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