Controlling JavaScript's setInterval Method
Assigning Function Invocations to Variables
var a = setInterval(function(){console.log('Did I start yet?'), 2000);
What happens if we open our Chrome console and paste this in?
It's a bit deceiving, but we're assigning variable a to a function invoca...
jimboslice.hashnode.dev1 min read
Gabriel Rufino
Software Developer | Back-end
Nice!!