const EASTER_EGG_PHRASE = 'egg' document.keysPressed = '' document.onkeydown = ({ key }) => { if (key) document.keysPressed += key if (document.keysPressed === EASTER_EGG_PHRASE) { const iframe = ` ` document.getElementById('div-nada-suspeita').innerHTML = iframe } }