Question
Harm in not initializing "var" variables at beginning of CFC function?
I was wondering if there is any need at this point to init variables in the beginning of CFC's that use the var scope (including queries, structures, ect).
I'm talking about the syntax.....
cfset var thisVariable = "someValueOrNothing"
As opposed to declaring them on the fly like......
{Some code up here}
cfquery name="var.getSomething"
{Some code below}
