--- title: Date.prototype.getUTCSeconds() slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds ---
O método getUTCSeconds()
retorna os segundos na data informada de acordo com a hora universal.
dateObj.getUTCSeconds()
Um número inteiro, entre 0 e 59, representando os segundos da data informada de acordo com a hora universal.
getUTCSeconds()
The following example assigns the seconds portion of the current time to the variabl
O exemplo a seguir atribui a parte dos segundos da hora atual à variável seconds
.
var today = new Date(); var seconds = today.getUTCSeconds();
Especificação | Estado | Comentário |
---|---|---|
{{SpecName('ES1')}} | {{Spec2('ES1')}} | Definição inicial. Implementado no JavaScript 1.3. |
{{SpecName('ES5.1', '#sec-15.9.5.23', 'Date.prototype.getUTCSeconds')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-date.prototype.getutcseconds', 'Date.prototype.getUTCSeconds')}} | {{Spec2('ES6')}} | |
{{SpecName('ESDraft', '#sec-date.prototype.getutcseconds', 'Date.prototype.getUTCSeconds')}} | {{Spec2('ESDraft')}} |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("javascript.builtins.Date.getUTCSeconds")}}