Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to pass array element name?
Message
 
 
To
All
General information
Forum:
Javascript
Category:
Other
Title:
How to pass array element name?
Miscellaneous
Thread ID:
01628031
Message ID:
01628031
Views:
42
Here is a simple hard-coded example:
function MyTest() {

 var MyObject = .... object is created
 // It is known that the MyObject refers to an array of two columns
 // To get value of the row 0 and column named "MY_COL1"
 var Col1Val = MyObject[0].MY_COL1;
}
Now I want to pass the name 'MY_COL1' to the above function so that it can be used with various objects.
Here is what I tried (not working):
MyTest("MY_COL1");

function MyTest( cCol1Name ) {

 var MyObject = .... object is created
 // It is known that the MyObject refers to an array of two columns
 // To get value of the row 0 and column named "MY_COL1"
 var Col1Val = MyObject[0].cCol1Name;

 // Does not work!
}
TIA
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Next
Reply
Map
View

Click here to load this message in the networking platform