JSFiddle - React, Tailwind, and code Playground

by master1991

HTML

<div>Keycode is <span></span></div>
<div>Arrow keycodes are 37, 38, 39, 40</div>

JavaScript

$(window).keydown( function(e) {
    $('span').html(e.keyCode);
});