i have seen in many javascript codes ppl add a "return true" at the end althouhg not necessary anybody know y??
var _globalString;
function doSomething()
{
_globalString= _globalString +' do something';
//some codes to do something more
//finally adding a return true
return true;
}
//