mobile menu icon

Kata: object literal to query string

Published by Carlos Blé on 07/09/2016

Katas, Learning, JavaScript


No long ago, we had to write a function that takes an object and returns a string to be sent as part of the query string in the request. This was because the communication mechanism was JSONP that works via the GET method. The server was already expecting the specific format shown below and we didn't have access to the server in order to change it and accept just an URL-encoded JSON. The fun started when we realised that an object may be a tree structure with nested objects. We test-drove the solution and found it interesting as a code kata. This is the expected behavior of the function:

This is our implementation:

Note that the object can't contain arrays neither functions.

Play with the code in the Babel Repl.

Volver a posts