I am new Clojurescript and want to do some hacking this long weekend, to port over a NodeJS app. My http response has a JSON structure as follows-
{
"key1":"foo",
"rows":[{"name":"alice"},{"friend":"bob"}]
}
What should my reader handler to make sure I get the rows and the values of the array elements? Thanks in advance.