Last active
July 26, 2018 19:52
-
-
Save bespoyasov/f343061e6810ba7ec37a75207ce9359c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const date1 = new Date(); | |
console.log(date1); | |
// дата передастся по ссылке: | |
// const date2 = date1; | |
// date1.getTime() => timestamp, количество миллисекунд, от 1 янв 1970 | |
// чтобы сделать копию, | |
// можно передать как аргумент дату в конструктор | |
const date2 = new Date(date1); | |
console.log(date2); | |
console.log('=============='); | |
date2.setDate(1); | |
console.log(date1); | |
console.log(date2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment