Skip to content
Advertisement

Return JSON object with a “header”

I have an API, where I need to return data. I want to make a “header”, where I specify the amount of tutors, the call returned. My current function looks like this:

JavaScript

This is an example, of the response.

JavaScript

]

I’d like to add a header, that specifies the amount of tutors/arrays that the response returned. So it would be at the top of the json response, “amount_of_tutors”: (Amount)

Advertisement

Answer

The simplest way is to add this line after the loop and change the return statement:

JavaScript

But it is doubtful whether there is benefit having that extra key.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement