Posts by Wellnikk • 11 points
4 posts
-
1
votes3
answers57
viewsA: Convert stopwatch to hh mm ss format
Reviewing the codes I arrived at a solution, leaving in this way: static cronometro () { let timer = document.getElementById(ID_DISPLAY) let timerArray = timer.textContent.split(':') let timerParado…
-
-1
votes3
answers57
viewsQ: Convert stopwatch to hh mm ss format
My stopwatch is running without format 00:00:00 I created a div in index.html <!-- TIMER --> <div class="container"> <span id="display">00:00:00</span> </div> No js…
-
0
votes0
answers22
viewsQ: How to validate and call a message only after clicking a button
I created a Javascript memory game. Everything is working almost perfectly, what I wanted was that the message of "CORRECT COMBINATION" and "INCORRECT COMBINATION", appeared only after I started the…
-
-1
votes1
answer45
viewsQ: Promise - Read Javascript File
Good Morning, I’m a beginner in Javascript I’m having difficulty using Promise to read.txt file using Fs.readFile. Detail I’m only using ". js" I did a callback all right with him but it turned into…