What's the difference between JavaScript's getYear() and getFullYear() functions?

前端 未结 3 1444
臣服心动
臣服心动 2021-02-12 02:52

I was working with JavaScript\'s Date object, and somewhere for the first time I needed to extract the year part of the date. What I saw was a weird behavior. It re

3条回答
  •  长发绾君心
    2021-02-12 03:26

    getYear() returns year minus 1900. This has been deprecated for a while now, it's best to use getFullYear().

提交回复
热议问题