Javascript functions can also be declared prototype like
<object name>.prototype.<variable name>=function(){
//
//
}
How it is different than following declaration
<object name>.<variable name>=function(){
//
//
}
How prototype functions different than normal functions in javascript ?