JavaScript Periksa apakah dua tombol ditekan

// Ctrl + S save
document.onkeyup = function(e) {
  // 83 is the keycode for S
  if (e.ctrlKey && e.which == 83) {
    //Ctrl+S Pressed!
  }
};
donnie58744