A developer has an is Dog function that takes one argument cat. They want to schedule the function to run every minute.
What is the correct syntax for scheduling this function?
setInterval(isDog, 60000,'cat');
Submit