Given a date, return the last day of that month.
Examples:
Input: inputDate = 2024-02-15
Output: 2024-02-29
Explanation: February 2024 is a leap year, so the last day is the 29th
Input: inputDate = 2023-02-15
Output: 2023-02-28
Explanation: February 2023 is not a leap year, so the last day is the 28th
Input: inputDate = 2024-12-01
Output: 2024-12-31
Explanation: December has 31 days, so the last day is the 31st
Input: inputDate = null
Output: null
Explanation: Return null for null input
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.