How would you describe a constructor and contextual “this” to a non-technical friend? “this” when being used in a constructor refers to the something being made, for if you were trying to refer to a person it you be them or they.
When is it appropriate to add next as a parameter to a route handler and what must you do if next has been passed to your middleware as a parameter? you want to add next when you are trying to guide the code to go to the next operation, if you want to include next and create an error you fill that method in with anything, so it could look like next() when moving to the next function or nex(‘some writing’) if you dont!