ReadKey

Nostalgic of old Pascal?

press key

Press ESC to stop

while(true)
{
    yield new Snippet.ReadKey({trapallkeys:true});
    display.innerText = KeyCodeNames[this.result] || this.result;

    if (this.result === 27)
        break;
}