Function - Before or After

Does it matter whether or not to place the function before or after the name of the function?


function firstOne(){
//nothing
}

OR


firstOne =  function(){
//nothing
}