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