Scheduled Job
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2025 12:40 AM
if (reminderTime == '15 minutes') {
reminderDateTime.addMinutes(-15);
} else if (reminderTime == '30 minutes') {
reminderDateTime.addMinutes(-30);
} else if (reminderTime == '1 hour') {
reminderDateTime.addMinutes(-60);
}
how is this block of code exactly working.
0 REPLIES 0