The question is about the correct way to name variable or identifiers that groups collections of two or more "things". Let me explain a little further with example and question...
- If you something that holds an id you may name it with the identifier "id"
- If you got somethign that holds an appoinment you may name it "appointment" as identifier
- If you got multiples ids (for example, an array) you may name it "ids"
- If you got multiples appointments under an array you may name it "appointments"
- If you got multiples appointments' ids, how may i name it?
- appointmentIds?
- appointmentsIds?
I'm not an english native speaker.