re: Use CFELSE or Let Logic Fall Through?

2009-07-29 Thread Jason Fisher
Completely acceptable to leave out the CFELSE if there is no alternative action that needs to be taken. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists

Re: Use CFELSE or Let Logic Fall Through?

2009-07-29 Thread Dominic Watson
The same with a function, for e.g. function fubar(){ if(z = y) return y; return z; } I prefer this form and I'd guess that it performed better (though almost certainly not to a remotely relevant degree). Its definitely perfectly acceptable. Dominic 2009/7/29 Jason Fisher

RE: Use CFELSE or Let Logic Fall Through?

2009-07-29 Thread Dawson, Michael
: Use CFELSE or Let Logic Fall Through? The same with a function, for e.g. function fubar(){ if(z = y) return y; return z; } I prefer this form and I'd guess that it performed better (though almost certainly not to a remotely relevant degree). Its definitely perfectly acceptable