index.html 292 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<script>
    var birth = prompt('생년월일 입력');
    document.write(birth.substr(0,4) + "년 " + birth.substr(4,2) + "월 " + birth.substr(6) + "일");
</script>
</body>
</html>