aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/global_objects/date
diff options
context:
space:
mode:
authorNewPirateOfUASeas <75931217+NewPirateOfUASeas@users.noreply.github.com>2021-06-25 21:15:33 +0300
committerGitHub <noreply@github.com>2021-06-25 21:15:33 +0300
commit62e4877eb1d6ff1b47a1f9a825e68f2b23db1f9c (patch)
treeb9b7a21b1d3463064fa89dc2fd256f03327f962c /files/ru/web/javascript/reference/global_objects/date
parent587281ee45ceb6758792d76e8264e0ea8c4e26ba (diff)
downloadtranslated-content-62e4877eb1d6ff1b47a1f9a825e68f2b23db1f9c.tar.gz
translated-content-62e4877eb1d6ff1b47a1f9a825e68f2b23db1f9c.tar.bz2
translated-content-62e4877eb1d6ff1b47a1f9a825e68f2b23db1f9c.zip
fixed typo (#1310)
* fixed typo * Update index.html
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/date')
-rw-r--r--files/ru/web/javascript/reference/global_objects/date/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/date/index.html b/files/ru/web/javascript/reference/global_objects/date/index.html
index 1c408ee249..420b957a5f 100644
--- a/files/ru/web/javascript/reference/global_objects/date/index.html
+++ b/files/ru/web/javascript/reference/global_objects/date/index.html
@@ -177,7 +177,7 @@ yourFunctionReturn = printElapsedTime(yourFunction);
<p><strong>Обратите внимание:</strong> в браузерах, поддерживающих высокое временное разрешение с помощью {{domxref("window.performance", "API замера производительности", "", 1)}}, метод {{domxref("Performance.now()")}} может обеспечить более надёжные и точные замеры затраченного времени, нежели метод {{jsxref("Date.now()")}}.</p>
</div>
-<h3 id="Получить_количество_секунд_с_начало_эпохи_Unix">Получить количество секунд с начало эпохи Unix</h3>
+<h3 id="Получить_количество_секунд_с_начала_эпохи_Unix">Получить количество секунд с начала эпохи Unix</h3>
<pre class="notranslate"><code>var seconds = Math.floor(Date.now() / 1000);</code></pre>