Does the order of query parameters matter?

Question

In the context of this exercise, does the order of query parameters matter?

Answer

No, the order of query parameters should not matter.

If we take the example query,

https://api.datamuse.com/words?key=value&anotherKey=anotherValue

changing the order of the query parameters should still return the same result,

https://api.datamuse.com/words?anotherKey=anotherValue&key=value

5 Likes

Thanks, I was confused about that but now understand it better.

2 Likes