How to detect combination keycode

How to detect combination keycode

  1. $(document).keydown(function(e) {
  2.       console.log('key code is: 'e.which);
  3. });
I know how to find out which key user use, but how to do it when they use combination key? for example:
"CTRL + C", "CTRL + V" and so on.