(a, b)
| 111 | // Arrow Functions => |
| 112 | // arrow function with explicit return |
| 113 | const sumArrow = (a, b) => { |
| 114 | return a + b |
| 115 | } |
| 116 | |
| 117 | // arrow function with implicit return |
| 118 | // IMPORTANT: For implicit return, remove curly braces |
nothing calls this directly
no outgoing calls
no test coverage detected