DEV Community

Discussion on: JavaScript: Skip Values In Destructuring

Collapse
 
mattbag00 profile image
Matt Bagni

I think you can use the rest operator (...args)

Collapse
 
ntvinhit profile image
Nguyį»…n Trį»ng VÄ©nh

so:
const measureCallback = (...args) => {
const [ , , width, height] = args;
}

I dont think this is a good idea