-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ko] Intl.DateTimeFormat.prototype.format() 신규번역 외 #22342
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,107 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
title: Intl.DateTimeFormat.prototype.format() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
slug: Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/format | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
l10n: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sourceCommit: 7ca252a5316512d024673614b5c361680c944daf | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{JSRef}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{jsxref("Intl.DateTimeFormat")}} 인스턴스의 **`format()`** 메서드는 지역과 `Intl.DateTimeFormat` 객체의 형식 옵션에 맞는 날짜를 출력합니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{EmbedInteractiveExample("pages/js/intl-datetimeformat-prototype-format.html", "taller")}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## 구문 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```js-nolint | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
format(date) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### 매개변수 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- `date` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- : 형식을 지정할 날짜. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### 반환 값 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
지정된 `date`를 나타내는 문자열로, 이 {{jsxref("Intl.DateTimeFormat")}} 객체의 로케일 및 서식 옵션에 따라 형식이 지정됩니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> **참고:** 대부분의 경우 `format()`이 반환하는 서식은 일관적입니다. 그러나 동일한 로케일 내에서도 구현에 따라 출력이 다를 수 있습니다. 출력 변형은 설계에 따른 것이며 사양에서 허용합니다. 또한 사용자의 예상과 다를 수도 있습니다. 예를 들어, 문자열이 줄 바꿈 없는 공백을 사용하거나 양방향 제어 문자로 둘러싸여 있을 수 있습니다. `format()`의 결과를 하드코딩된 상수와 비교해서는 안 됩니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## 예제 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### format 사용하기 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
단일 날짜의 서식을 지정하려면 `format` 접근자 함수를 사용합니다. 아래는 세르비아의 경우입니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```js | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const options = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
weekday: "long", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
year: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
month: "long", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
day: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const dateTimeFormat = new Intl.DateTimeFormat("sr-RS", options); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
console.log(dateTimeFormat.format(new Date())); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// "недеља, 7. април 2013." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### map과 함께 format 사용하기 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
배열의 모든 날짜에 서식을 지정하려면 `format` 접근자 함수를 사용합니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
이 함수는 함수를 가져온 {{jsxref("Intl.DateTimeFormat")}}에 바인딩되어 있으므로 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{jsxref("Array.prototype.map()")}}에 직접 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
전달할 수 있습니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```js | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const a = [new Date(2012, 8), new Date(2012, 11), new Date(2012, 3)]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const options = { year: "numeric", month: "long" }; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const dateTimeFormat = new Intl.DateTimeFormat("pt-BR", options); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const formatted = a.map(dateTimeFormat.format); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
console.log(formatted.join("; ")); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// "setembro de 2012; dezembro de 2012; abril de 2012" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
### 형식이 지정된 날짜 값을 정적 값과 비교하지 않기 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
대부분의 경우 `format()`이 반환하는 서식은 일관적입니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
그러나 이는 향후 변경될 수 있으며 모든 언어에 대해 보장되는 것은 아닙니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
설계에 따른 출력 변형은 사양에 따라 허용됩니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
특히 IE 와 Edge 브라우저는 날짜 주위에 양방향 제어 문자를 삽입하기 때문에 다른 텍스트와 연결할 때 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
출력 텍스트가 제대로 흐릅니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
이러한 이유로 `format()`의 결과를 정적 값과 비교할 수 없습니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```js example-bad | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let d = new Date("2019-01-01T00:00:00.000000Z"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let formattedDate = Intl.DateTimeFormat(undefined, { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
year: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
month: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
day: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
hour: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
minute: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
second: "numeric", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}).format(d); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"1.1.2019, 01:00:00" === formattedDate; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Firefox와 다른 곳에서는 true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// IE와 Edge에서는 false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> **참고:** 보다 자세한 정보와 예제는 [StackOverflow 글타래](https://stackoverflow.com/questions/25574963/ies-tolocalestring-has-strange-characters-in-results)를 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> 참고하시기 바랍니다. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
원문에 존재하지 않는 내용으로 보입니다. 확인 부탁드리겠습니다. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 같은 문서 ja, fr 을 보면 남아있어서 원래 있었는데 빠진듯 합니다. 근데 한참 전에 빠진것 같은데 왜 제 로컬에 남아있어서 이것까지 해석했는지 모르겠군요. ㅠㅠ 예전에 번역하려고 로컬에 저장해놓은것일 수 있어서 intl 쪽은 번역할때 다시 한 번 최신 문서 확인하도록 하겠습니다. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## 명세서 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{Specifications}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## 브라우저 호환성 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{Compat}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## 같이 보기 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- {{jsxref("Intl.DateTimeFormat")}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- {{jsxref("Date.prototype.toLocaleString()")}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- {{jsxref("Date.prototype.toLocaleDateString()")}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- {{jsxref("Date.prototype.toLocaleTimeString()")}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
줄 수는 원문과 동일하게 해주세요. 관련 논의는 여기에서 확인할 수 있습니다.