Skip to content
Advertisement

Iterate through array and call data function from loop

The follow should return 3 different results depending on the array value as it iterates through.

I think this question is correct, how can I change it so data{} is a function called from my loop and so a new set of data is posted each time? (difference is the array value) I’m not sure how I would do this so that the value matches and changes accordingly.

I have a switch included because my API doesn’t like the format of the input so have to change it.

Not even sure this is the best approach so any advice is helpful.

Input

JavaScript

Expected output

JavaScript

Script

JavaScript

Advertisement

Answer

use a forEach loop in place of your for loop.

JavaScript

You need to make options a parameter to sendData rather than accessing it as a global variable, since it’s local to the forEach loop.

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