const date = new Date();let s = date.getSeconds().toString().length < 2 ? "0" + date.getSeconds() : date.getSeconds();