What is the difference between this:
function blankWord(){
    console.log('blank!');
    setTimeout(blankWord, 5000);
}
blankWord();
Which calls the function every 5 seconds as it should, and this:
function blankWord(t){
    console.log('blank!');
    setTimeout(blankWord, t);
}
blankWord(5000);
Which calls the function repeatedly insanely fast?
 
     
    