Given a Date value, return the last day of that month. Return null for null input.
Examples:
Input: d = Date.newInstance(2024, 1, 15)
Output: Date.newInstance(2024, 1, 31)
Explanation: January has 31 days
Input: d = Date.newInstance(2024, 2, 10)
Output: Date.newInstance(2024, 2, 29)
Explanation: 2024 is a leap year, so February has 29 days
Input: d = Date.newInstance(2023, 2, 5)
Output: Date.newInstance(2023, 2, 28)
Explanation: 2023 is not a leap year, so February has 28 days
Input: d = Date.newInstance(2024, 4, 1)
Output: Date.newInstance(2024, 4, 30)
Explanation: April has 30 days
Input: d = null
Output: null
Explanation: Null input returns null
Apex Code Editor
Welcome to Lightning Challenge!
How 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 July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.