Function parameter definitions in ES6
What I don’t understand is how this relates to destructuring. Within removeBreakpoint, you can use url, line, and column directly. The destructuring happens when removeBreakpoint is called with an options object; that object’s matching properties are destructured into individual arguments. Is the idea that you permit the ability to pass an object into this function … Read more