doThis = function () vs. function doThis() : what's the difference?

Could someone explain me what is the difference between:

doThis = function(params){

}

and

function doThis(params){
}

??

thanks:)