Given a Date, return it formatted as a long date string in the format "Month Day, Year" (e.g., "January 15, 2026"). Use the full month name. Return null for null input.
Examples:
Input: inputDate = Date.newInstance(2026, 1, 15)
Output: "January 15, 2026"
Explanation: Month 1 is January, day is 15, year is 2026
Input: inputDate = Date.newInstance(2025, 12, 25)
Output: "December 25, 2025"
Explanation: Month 12 is December, day is 25, year is 2025
Input: inputDate = Date.newInstance(2024, 3, 1)
Output: "March 1, 2024"
Explanation: Month 3 is March, day is 1, year is 2024
Input: inputDate = 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.