Evolution of an Azure Function App
Problem Statement: Extract information from a JSON file containg an array of objects. For this article, each object in the file is as follows:
{
"id": 1,
"name": "Bilbo",
"age": 111
}
and we want to extract the name
and age
information. We will also assume that each extraction take about 1s …