Answers for "js function to run after 10s"

1

run after 1s javascript

setTimeout(function () {
  console.log('Hello world')
}, 1000)

setTimeout(() => {
  console.log('Foo bar')
}, 1000)
Posted by: Guest on February-17-2021

Code answers related to "js function to run after 10s"

Code answers related to "Javascript"

Browse Popular Code Answers by Language