Good question with a simple answer : you can't!
Javascript is a client-side programming language, therefore it works on the client's machine, so you can't actually hide anything from the client.
Obfuscating your code is a good solution, but it's not enough, because, although it is hard, someone could decipher your code and "steal" your script.
There are a few ways of making your code hard to be stolen, but as i said nothing is bullet-proof.
Off the top of my head, one idea is to restrict access to your external js files from outside the page you embed your code in. In that case, if you have
<script type="text/javascript" src="myJs.js"></script>
and someone tries to access the "myJs.js" file in browser, he shouldn't be granted any access to the script source.
For example, if your page is written in php, you can include the script via the "include" function and let the script decide if it's "safe" to return it's source.
In this example, you'll need the external "js" (written in php) file "myJs.php" :
<?php
$URL = $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
if ($URL != "my-domain.com/my-page.php")
die("/*sry, no acces rights*/");
?>
// your obfuscated script goes here
that would be included in your main page "my-page.php" :
<script type="text/javascript">
<?php include "getCallerUrl.php"; ?>
</script>
This way, only the browser could see the js file contents.
Another interesting ideea is that at the end of your script, you delete the contents of your dom script element, so that after the browser evaluates your code, the code disappears :
<script id="erasable" type="text/javascript">
//your code goes here
document.getElementById('erasable').innerHTML = "";
</script>
These are all just simple hacks that cannot, and I can't stress this enough : cannot, fully protect your js code, but they can sure piss off someone who is trying to "steal" your code.