Analog Clock with only HTML, CSS & JS - Interview Question

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

ความคิดเห็น • 10

  • @bellohakeem1965
    @bellohakeem1965 3 หลายเดือนก่อน

    This is amazing. Let’s continue working on interview questions

  • @chiemeliecharles3262
    @chiemeliecharles3262 3 หลายเดือนก่อน

    I love this, thank you for sharing

  • @AbhishekSharma-sq4ps
    @AbhishekSharma-sq4ps 3 หลายเดือนก่อน

    love this

  • @_aboobae
    @_aboobae 3 หลายเดือนก่อน

    You should have done was to use the DRY method on the covertToDegree function
    360/x, since x is changeable, he should have passed it through the function call, thereby using one function
    Eg.
    Const a = (constantTime, currentTime) =>{
    Const degree = 360/constantTime * current Time
    Return degree
    }
    Then call them like
    Const hours = a(12, currentHours)
    Const minutes = a(12, currentMinutes)
    Const seconds = a(12, currentSeconds)
    Making the code less redundant.

  • @OverTheTechBoundary
    @OverTheTechBoundary 2 หลายเดือนก่อน

    Thanks

  • @nicon2002
    @nicon2002 3 หลายเดือนก่อน

    360/12 = 30 || 360/60 = 6 ----> is alweys const, u dont need calculate this every 1s
    and lite tip : transform-origin: bottom center;

    • @_aboobae
      @_aboobae 3 หลายเดือนก่อน

      For code readability, it is necessary to indicate 360/12 but for efficiency you are right, he should have commented 360/x for readability.

  • @utricks
    @utricks 3 หลายเดือนก่อน

    First to comment

  • @tomdarank1272
    @tomdarank1272 3 หลายเดือนก่อน

    Now do it without JS

  • @utricks
    @utricks 3 หลายเดือนก่อน

    Thanks