Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 2.23 KB

File metadata and controls

62 lines (51 loc) · 2.23 KB
title ms.custom ms.date ms.prod ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
setYear Method (Date) (JavaScript) | Microsoft Docs
01/18/2017
windows-client-threshold
devlang-javascript
language-reference
setYear
JavaScript
TypeScript
DHTML
Year method
setYear method
36431050-e0ec-45ee-830d-0d7c20e207ea
11
mikejo5000
mikejo
ghogen

setYear Method (Date) (JavaScript)

Sets the year value in the Date object.

Syntax

  
dateObj.setYear(numYear)   

Parameters

dateObj
Required. Any Date object.

numYear
Required. For the years 1900 through 1999, this is a numeric value equal to the year minus 1900. For dates outside that range, this is a 4-digit numeric value.

Remarks

This method is obsolete, and is maintained for backwards compatibility only. Use the setFullYear method instead.

To set the year of a Date object to 1997, call setYear(97). To set the year to 2010, call setYear(2010). Finally, to set the year to a year in the range 0-99, use the setFullYear method.

Note

For [!INCLUDEjavascript] version 1.0, setYear uses a value that is the result of the addition of 1900 to the year value provided by numYear, regardless of the value of the year. For example, to set the year to 1899 numYear is -1 and to set the year 2000 numYear is 100.

Requirements

[!INCLUDEjsv1]

Applies To: Date Object

See Also

getFullYear Method (Date)
getUTCFullYear Method (Date)
getYear Method (Date)
setFullYear Method (Date)
setUTCFullYear Method (Date)