I'm currently learning Azure Functions in my Back-end development. The problem is that using Azure Functions prevents my JavaScript code to return a simple JSON object in Postman. I've read the documentation and also tried using some JS functions like JSON.Stringify, but still no luck. Here's the sample of my code:
message = {
success: true,
status: 'pending',
message: "Some message etc..."
}
return message;
I'm practically new to Azure, so any help will be appreciated. Thanks!