Notes: Cookie Consent App
How to delay a page rendering: setTimeout
It's possible to hold a component from displaying in a regular workflow using setTimeout.
console.log('What is the capital of Peru?')
setTimeout(function(){
console.log('Lima!') //displays after the 2 st...
codelady.hashnode.dev2 min read