Created
December 8, 2022 13:20
-
-
Save deleteman/34f976dd0275e832a891546e158887b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let internvalID = 0; | |
const names = ["Fernando", "John", "Cate", "Mary", "Francis"] | |
function sayHi(list) { | |
let name = list[Math.round(Math.random() * 10) % 4] | |
console.log("Hello", name) | |
} | |
intervalID = setInterval(sayHi, 1000, names) | |
setTimeout( function() { | |
clearTimeout(intervalID) | |
}, 4000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment