Learn the Date Object by Building a Date Formatter - Step 27

Tell us what’s happening:

please help i’ve ben on this for 2hrs now don’t know what’s wrong

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region


  switch (dateOptionsSelectElement.value) {
    case "yyyy-mm-dd":
      currentDateParagraph.textContent = formattedDate
        .split("-")
        .reverse()
        .join("-");
      break;
    case "mm-dd-yyyy-h-mm":
      currentDateParagraph.textContent = `${month}-${day}-${year} ${hours} Hours ${minutes} Minutes`;
      break;
    default:
    currentDateParagraph.formattedDate = textContent;
  }
  

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Learn the Date Object by Building a Date Formatter - Step 27

set the text content of currentDateParagraph to the value of formattedDate.

Hm, let’s see:

It should be kind of similar to the previous cases.

Do you see how something is different?

thank you so much , it has worked

1 Like