From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- .../global_objects/date/getdate/index.html | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 files/ru/web/javascript/reference/global_objects/date/getdate/index.html (limited to 'files/ru/web/javascript/reference/global_objects/date/getdate') diff --git a/files/ru/web/javascript/reference/global_objects/date/getdate/index.html b/files/ru/web/javascript/reference/global_objects/date/getdate/index.html new file mode 100644 index 0000000000..06c43d7b14 --- /dev/null +++ b/files/ru/web/javascript/reference/global_objects/date/getdate/index.html @@ -0,0 +1,81 @@ +--- +title: Date.prototype.getDate() +slug: Web/JavaScript/Reference/Global_Objects/Date/getDate +tags: + - Date + - JavaScript + - Method + - Prototype + - Reference +translation_of: Web/JavaScript/Reference/Global_Objects/Date/getDate +--- +
{{JSRef("Global_Objects", "Date")}}
+ +

Сводка

+ +

Метод getDate() возвращает день месяца указанной даты по местному времени.

+ +

Синтаксис

+ +
dateObj.getDate()
+ +

Параметры

+ +

Нет.

+ +

Возвращаемое значение

+ +

Значение, возвращённое методом getDate(), является целым числом от 1 до 31.

+ +

Примеры

+ +

Пример: использование метода getDate()

+ +

Вторая инструкция в примере ниже присваивает значение 25 переменной day из значения объекта {{jsxref("Global_Objects/Date", "Date")}} date.

+ +
let date = new Date('December 25, 1995 23:15:30');
+let day = date.getDate();
+
+console.log(day); // 25
+
+ +

Спецификации

+ + + + + + + + + + + + + + + + + + + + + + + + +
СпецификацияСтатусКомментарии
ECMAScript 1-е издание.СтандартИзначальное определение. Реализована в JavaScript 1.1.
{{SpecName('ES5.1', '#sec-15.9.5.14', 'Date.prototype.getDate')}}{{Spec2('ES5.1')}}
{{SpecName('ES6', '#sec-date.prototype.getdate', 'Date.prototype.getDate')}}{{Spec2('ES6')}}
+ +

Совместимость с браузерами

+ +
+ +
{{Compat("javascript.builtins.Date.getDate")}}
+ +

Смотрите также

+ + -- cgit v1.2.3-54-g00ecf