Patient Medical Records

  • + 0 comments

    Check this one: If you are struggling to resolve this challenge, try to format the timestamp using the following format: 00/00/0000. I used toLocaleDateString method to format the timestamp:

    const timestamp = 1568317109556; const formattedDate = new Date(timestamp).toLocaleDateString('en-US', { month: '2-digit', day: '2-digit', year: 'numeric' }); `