JSFiddle - React, Tailwind, and code Playground

JavaScript

var a = setTimeout( function() { return; }, 6000 );
var b = setTimeout( function() { return; }, 6000 );

console.log(typeof a, a, typeof b, b);
clearTimeout(a);
clearTimeout(b);
console.log(typeof a, a);
console.log(typeof b, b);