I have the following 2 arrays in a Javascript i use
var coupons = new Array (
"abc",
"def",
"ghi"
);
var coupdc = new Array (
20,
21,
25
);
I no longer want the data visible. I also have a database that contains the fields with this data. Is there a way i can load the data into the array. If there is a reasonable way can someone help with an example.
var coupons = new Array (
"abc",
"def",
"ghi"
);
var coupdc = new Array (
20,
21,
25
);
I no longer want the data visible. I also have a database that contains the fields with this data. Is there a way i can load the data into the array. If there is a reasonable way can someone help with an example.