Posts by Wesley • 11 points
3 posts
-
0
votes2
answers265
viewsQ: clearInterval not for setInterval function
I’m studying the timing function in Javascript and I’m not able to make setInterval() stop through clearInterval() var timer = function(){ setInterval(() => { console.log(count); count++ }, 200)}…
javascriptasked Wesley 11 -
0
votes0
answers35
viewsQ: Difficulty generating a Bundle.js file
I’m testing the Babel For this I have a file 'matematica.js' which for now exports only one function const soma = function(a,b){ return a - b } export default {soma} This function is imported into…
-
-1
votes2
answers798
viewsQ: Loop in Javascript to click button
I am using the console to click a button with the following code: document.getElementById('meubotao').click(); I’d like to make one loop for and let Javascript click the button a 100 times, but…
javascriptasked Wesley 11