JavaScript의 날짜에서 월 이름 검색
JavaScript는 날짜 개체에서 정보를 조작하고 검색하는 다양한 방법을 제공합니다. 일반적인 작업 중 하나는 특정 날짜와 관련된 달의 이름을 얻는 것입니다. 이 기사에서는 내장된 Date 객체와 ECMAScript 국제화 API를 사용하여 이 기능을 구현하는 방법을 살펴보겠습니다.
Date 객체 사용:
var objDate = new Date("10/11/2009"); // Extract the month number (0-based) var monthNum = objDate.getMonth(); // Use an array of month names to retrieve the full name var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; // Display the month name console.log(monthNames[monthNum]);
국제화 API 사용:
const date = new Date(2009, 10, 10); // 2009-11-10 const month = date.toLocaleString('default', { month: 'long' }); console.log(month);
이 방법이 더 정교합니다. 사용자의 로케일에 따라 현지화 및 서식 옵션을 허용합니다.
위 내용은 JavaScript의 날짜에서 월 이름을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!