context.globalCompositeOperation = "source-over";

“source-over” compositing [default], places all new drawings over any existing drawings.

context.globalCompositeOperation='source-over';  // the default
context.drawImage(background,0,0);
context.drawImage(parachuter,0,0);

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/aaf8113f-3620-46b2-9eab-07fa3cd4090d/Untitled.png