diff --git a/files/ru/web/api/console/timestamp_static/index.md b/files/ru/web/api/console/timestamp_static/index.md index a3e198dbf7b903..b1f00895934e13 100644 --- a/files/ru/web/api/console/timestamp_static/index.md +++ b/files/ru/web/api/console/timestamp_static/index.md @@ -1,24 +1,32 @@ --- -title: Console.timeStamp() +title: "console: статический метод timeStamp()" slug: Web/API/console/timestamp_static +l10n: + sourceCommit: 0c3f18aca2c8a93d3982183f64bf7762c2c310b0 --- -{{APIRef("Console API")}}{{Non-standard_header}} +{{APIRef("Console API")}}{{Non-standard_header}} {{AvailableInWorkers}} -Добавляет маркер в браузерные инструменты [Performance](https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference) или [Waterfall](/ru/docs/Tools/Performance/Waterfall). Это помогает соотнести точку в вашем коде с другими записанными событиями. +Статический метод **`console.timeStamp()`** добавляет в браузерные инструменты измерения производительности ([Firefox](https://profiler.firefox.com/docs/#/), [Chrome](https://developer.chrome.com/docs/devtools/performance/reference)). Это позволяет сопоставить точку в коде с другими событиями, записанными на временной шкале, такими как события компоновки и отрисовки. + +Дополнительно можно передать аргумент для обозначения отметки времени, и эта метка будет отображаться рядом с маркером. {{AvailableInWorkers}} ## Синтаксис +```js-nolint +timeStamp(label) ``` -console.timeStamp(label); -``` -## Параметры +### Параметры + +- `label` {{Optional_Inline}} + - : Название метки. + +### Возвращаемое значение -- `label` - - : Название метки. Необязательный параметр. +Нет ({{jsxref("undefined")}}). ## Совместимость с браузерами @@ -26,6 +34,7 @@ console.timeStamp(label); ## Смотрите также -- {{domxref("Console.time()")}} -- {{domxref("Console.timeEnd()")}} -- [Adding timestamps to the Waterfall](/ru/docs/Tools/Performance/Waterfall#Timestamp_markers) +- {{domxref("console/time_static", "console.time()")}} +- {{domxref("console/timeLog_static", "console.timeLog()")}} +- {{domxref("console/timeEnd_static", "console.timeEnd()")}} +- [Adding markers with the console API](https://web.archive.org/web/20211207010020/https://firefox-source-docs.mozilla.org/devtools-user/performance/waterfall/index.html#adding-markers-with-the-console-api)