JS_HOME_WORK/20-date/solution.js
2025-02-05 08:47:22 +01:00

13 lines
335 B
JavaScript
Executable File

/** ЗАДАЧА 20 - Дата
*
* 1. Создайте переменную и присвойте ей текущее время в миллисекундах
*
* 2. Выведите значение в консоль
*/
const currentDate = new Date()
const currentDateInMs = currentDate.getTime()
console.log(currentDateInMs)