날짜 잘못셈
https://ko.javascript.info/formdata
const profile_name = document.getElementById("profilename")
profile_name.innerText() = user_profile.profilename
이렇게 하면 안되고
const profile_name = document.getElementById("profilename")
profile_name.setAttribute("value", user_profile.profilename)
이렇게 해야함..? 이건 상관없음
const date = document.getElementById("date")
const yy = comment_detail_json.created_at.split("-")[0]
const mm = comment_detail_json.created_at.split("-")[1]
const dd = comment_detail_json.created_at.split("-")[2].substr(0,2)
date.innerText = yy+'.'+mm+'.'+dd
const dd = comment_detail_json.created_at.substr(0,10)