You want to enqueue a script that depends on jQuery and load it in the footer. Which is the correct way to do this?
Awp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array('jquery'), null, false);
Bwp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array('jquery'), null, true);
Cwp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array(), null, false);
Dwp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array(), null, true);