cara mendaftarkan penekanan tombol di p5.js

function keyPressed() {
  if (keyCode === LEFT_ARROW) {
    value = 255;
  }
Clever Coyote