Is there any way to create a List of objects in JS/JQuery as I do in C#?
I just want to dynamically add objects to a list as I do in C#. Like:
List<string> myList = new List<string>();
myList.add("myString");
Is there any way to achieve the same thing in Javascript? I don't care if the list is typed or not. I just want the data structure.
Thanks!