"for" loop using javascript to bubble

So…

  1. Generate you Javascript:

let x = 3;
myList = ;
for(i=0; i<x; i++){
myList.push(i)
}
bubble_fn_function(myList);

  1. Pass the result list to Bubble:

  1. Now you have a list. You can check it out thru a simple text field like this:

image

It will display “0, 1, 2”

  1. Use it as a RG:

This is the result:

image

1 Like