MCPcopy Create free account
hub / github.com/CleverProgrammers/JavaScript-Course-by-Clever-Programmer- / sumArrow

Function sumArrow

playground.js:113–115  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

111// Arrow Functions =>
112// arrow function with explicit return
113const sumArrow = (a, b) => {
114 return a + b
115}
116
117// arrow function with implicit return
118// IMPORTANT: For implicit return, remove curly braces

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected