diff options
Diffstat (limited to 'files/ru/web/api/history/state/index.html')
-rw-r--r-- | files/ru/web/api/history/state/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/api/history/state/index.html b/files/ru/web/api/history/state/index.html index 3faaa8676a..82b65cd3f7 100644 --- a/files/ru/web/api/history/state/index.html +++ b/files/ru/web/api/history/state/index.html @@ -15,11 +15,11 @@ translation_of: Web/API/History/state <h3 id="Значение">Значение</h3> -<p>Последнее состояние стека истории. Значение равно {{jsxref("null")}} до тех пор, пока не будет применен метод {{domxref("History.pushState","pushState()")}} или {{domxref("History.replaceState","replaceState()")}}.</p> +<p>Последнее состояние стека истории. Значение равно {{jsxref("null")}} до тех пор, пока не будет применён метод {{domxref("History.pushState","pushState()")}} или {{domxref("History.replaceState","replaceState()")}}.</p> <h2 id="Примеры">Примеры</h2> -<p>Код, приведенный ниже, выводит в консоль значение <code>history.state</code> до и после применения метода {{domxref("History.pushState","pushState()")}}, который записывает значение в историю.</p> +<p>Код, приведённый ниже, выводит в консоль значение <code>history.state</code> до и после применения метода {{domxref("History.pushState","pushState()")}}, который записывает значение в историю.</p> <pre class="brush: js notranslate">// Выведет null потому что мы пока не изменяли стек истории console.log(`History.state before pushState: ${history.state}`); |