Question
cron.schedule(“* * * * *”, function () { console.log(“Running Cron Job”); });
const sec = 10;
cron.schedule(“sec * * * *”, function () { console.log(“Running Cron Job”); });
Can I write variable like this??
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×