When using the code.org javascript editor in Applab, it is possible to create a dropdown menu by utilizing the following syntax:
dropdown('id', 'option1', 'option2', ...);
I am curious if there is a method to manipulate the dropdown list like an array, such as:
remove('id', 'position');
and:
insert('id', 'position', 'item1', 'item2'...);
Any assistance on this matter would be greatly appreciated, as I have been unable to find information on how to do this elsewhere.