var Config = { Windows: ['apple','mangi','lemon'] }
I have a condition and is based on the fact that I want to push the banana value in my array.
If(Condition Passed) { Config.Windows.unshift('banana'); Windows: ['banana','apple','mangi','lemon'] Config.Windows.reverse();
This is not so ... when I use Config.Windows in my other function, there is no banana Value ... in general
for each(var item in Config.Windows.reverse()) { Ti.API.info(item);
John cooper
source share