When printing a variable it shows me 5 results that I have obtained from the database.
- General Management.
- Administrative Assistant.
- Administration and Human Resources.
- Finance and Accounting.
- Advertising and Marketing.
But I would like to know how I can convert these 5 results into a number as such; that is to say, that the console does not print me as such those results but that I tell them.
CODE
for (var j = 0; j < resultado[i].usuario.areas.length; j++)
{
var areas = resultado[i].usuario.areas[j];
}
Thank you.