how to change variable in multiple JSLs at once
Hi, I use include() to run multiple JSLs in each JSL I have variable "todaydate". However, now I want to run all the JSLs using include, but change the todaydate across all JSLs to 03Jun2023. How I can do that ? todaydate = Format date( Today(), "ddmonyyyy" );
I was thinking:
todaydate = "03Jun2023"; // this will replace in all 10 jslinclude(jsl1);include(jsl2);...include(jsl10);