, , - , . Javascript , . , . , , . , .
<script type="text/javascript">
function myAmazingFunction(){
alert("Does Something");
}
</script>
...
<script type="text/javascript">
myAmazingFunction = function(){};
myAmazingFunction();
</script>
, , , , - .
, .
Edit:
, . "-", "- " .
<script type="text/javascript">
function myAmazingFunction() {
alert("Does Something");
}
myAmazingFunction();
var temp = myAmazingFunction;
myAmazingFunction = function() { alert("Does Something Else"); };
myAmazingFunction();
myAmazingFunction = temp;
myAmazingFunction();
</script>
3 :
Does Something
Does Something Else
Does Something