(a, b, c)
| 70 | |
| 71 | const numbers = [1, 2, 3] |
| 72 | function sumWithSpread(a, b, c) { |
| 73 | return a + b + c |
| 74 | } |
| 75 | |
| 76 | console.log(sumWithSpread(1, 2, 3)) // Sin Spread |
| 77 | console.log(sumWithSpread(...numbers)) // Con Spread |
no outgoing calls
no test coverage detected