When window.alert () is called, the script should not wait for user input (for example, pressing ok), it should continue.
How can I achieve without using the setTimeout () function?
this.alert('Window')
console.log('Continue here, dont wait for user input on the "Window"')
Faizy source
share