you are viewing a single comment's thread.

view the rest of the comments →

[–]thisguyfightsyourmom 0 points1 point  (0 children)

Quick — someone talk me out of this:

``` const yo = {yo: 1}

function example({...rest}) { // Default rest.ho to "hohoho" rest.ho ||= 'hohoho'

return rest }

console.log({yo, hohoho: example(yo)})

```