Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created December 8, 2022 13:20
Show Gist options
  • Save deleteman/34f976dd0275e832a891546e158887b9 to your computer and use it in GitHub Desktop.
Save deleteman/34f976dd0275e832a891546e158887b9 to your computer and use it in GitHub Desktop.
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