I have installed the Resharper extension to visual studio.When i implement the code like below in JavaScript
updateTable();
function updateTable(){
//code here
}
it suggest me to normalise the local declaration,it will change code to like below
function updateTable(){
//code here
}
updateTable();
However both code snippet is work well , Is it important to normalize local declaration?. will it influence page loading performance ? Is it Standard to be followed ?