did some digging around and wrote this code that now works for my project. thanks to all that helped!
const dob = "{{user.dob}}"; const localDob = new Date(dob);
const formattedDob = localDob.toLocaleDateString();
document.getElementById('dobDisplay').textContent = formattedDob