So I saw someone using CFSET differently than I thought we could use it. Ignore the functions or purpose below, just look at the CFSET part. I've always done
<cfset temp = ListAppend(myList, "hello">
but I saw
<cfset ListAppend(myList, "hello">
with no "temp =" part. Like doing CFSCRIPT in a CFSET tag or something. What do you all make of this? Any thoughts pro or con?
<cfset temp = ListAppend(myList, "hello">
but I saw
<cfset ListAppend(myList, "hello">
with no "temp =" part. Like doing CFSCRIPT in a CFSET tag or something. What do you all make of this? Any thoughts pro or con?