if you declare a function in javascript, you can't use the '$' character in the name, so how is that jquery is able to do so? For example:
function myFunction() {
$("#h01").html("Hello jQuery")
}
$(document).ready(myFunction);
but if i declare a function as so:
function $(a){
// do something
}
javascript shows an error?