JSFiddle - React, Tailwind, and code Playground
by ncapito
HTML
<div ng-app>
<div ng-controller="myController">
<input ng-keypress="keypress($event)"/>
<p>last key: {{lastKey}}</p>
</div>
</div>
JavaScript
function myController($scope) {
$scope.lastKey = "---"
$scope.keypress = function($event) {
$scope.lastKey = $event.keyCode
};
}