As a student learning JavaScript, I have an assignment due tonight and am facing challenges with populating a List Box (combo box) from a Multi-Dimensional Array.
After working on the code multiple times, I managed to create a multi-dimensional array that functions correctly (I tested it by sending the results to an alert box).
var concertArray = [
["Billy Joel", "99", "equal.png"],
["Bryan Adams", "89", "higher.png"],
["Brian Adams", "25", "lower.png"]
];
However, I am struggling to figure out how to populate this array into a select list box (combo box).
I would greatly appreciate any assistance provided. Thank you!