난 당분간 언어별 비교를 해보고자 한다. 그 첫번째로 현재 날짜 구하는 방법이다.비교할 언어는 javascript, php, vb.net, c#, python 이다. 그럼 알아보자.1. Javascript 로 현재 날짜 구하기function getCurrentTimeGMT9() { const now = new Date(); // UTC 기준 +9시간 적용 now.setUTCHours(now.getUTCHours() + 9); const year = now.getUTCFullYear(); const month = String(now.getUTCMonth() + 1).padStart(2, '0'); const day = String(now.getUTCDate()).padSta..