날짜에서 월 이름을 추출하는 방법
JavaScript에서는 Date 객체에서 월 이름을 쉽게 검색할 수 있습니다. 다음은 포괄적인 가이드입니다.
toLocaleString() 메서드 사용:
이 메서드를 사용하면 로케일별 규칙에 따라 날짜 객체의 형식을 문자열로 지정할 수 있습니다. 월 이름의 경우 "month" 키가 다음 값 중 하나로 설정된 개체를 지정합니다.
예:
var objDate = new Date("10/11/2009"); // Get the month name in long format const monthNameLong = objDate.toLocaleString('default', { month: 'long' }); // Get the month name in short format const monthNameShort = objDate.toLocaleString('default', { month: 'short' }); console.log(`Long month name: ${monthNameLong}`); console.log(`Short month name: ${monthNameShort}`);
출력:
Long month name: October Short month name: Oct
위 내용은 JavaScript의 날짜에서 월 이름을 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!