How to add custom JavaScript to WordPress

wp-content/themes/ActiveTheme/functions.php

function custom_js()
{
?>
	<script>
		....
	</script>
<?php
}
add_action('wp_head', 'custom_js');