In javascript, if i put
console.log("hello world")
It'll log "hello world" to console just 1 time, at the load of the page. Can i make this code run not just 1 time, but until the web page closed?
In javascript, if i put
console.log("hello world")
It'll log "hello world" to console just 1 time, at the load of the page. Can i make this code run not just 1 time, but until the web page closed?
while (1) console.log("Hello, World!");