I was a content manager of few online shops (support and filling). Also I am a blogger on Instagram (about 30 thousand subscribers, Ukraine). I love creating advertising campaigns. After the war in Ukraine I had to move from Kyiv to Canada.
function formatDate() {
let now = new Date();
let days = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
let dayW = days[now.getDay()];
let hours =
now.getHours() < 10 ? "0" + now.getHours() : now.getHours();
let minutes =
now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes();
let fullDate = `${dayW} ${hours}:${minutes}`;
let dataReload = document.querySelector("#day-today");
dataReload.innerHTML = `${fullDate}`;
}
formatDate();
10 years in Advertising. And I had been learning Java Script for few weeks.
Master’s degree in Medical Devices and Systems Basic level in SheCodes courses