Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2020 11:43 PM
I having an array filled with Values....
I want empty the array in a schedules job.
g_form - i believe in not available for scheduled job as it gave me an error in background scripts when I tried
for (var k=0; k<array_a.length; k++)
{g_form.clearValue(array_a[k]);}
Solved! Go to Solution.
Labels:
- Labels:
-
Script Debugger
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2020 11:48 PM
You can simply use the below code to empty an array
array_a = [];
Thanks,
Palani
Thank you,
Palani
Palani
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2020 11:48 PM
You can simply use the below code to empty an array
array_a = [];
Thanks,
Palani
Thank you,
Palani
Palani