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!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

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 Feb 2026

Contest runs February 1 - 28. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.