Learning ColdFusion 9: Ternary Operator Works Around Implicit Array Bug

<!--- Create a raw string value. --->
<cfset data = "Simple Value" />
 
<!---
	Convert the data variable to an array using implicit
	array notation.
--->
<cfset data = [ data ] />
 
<!--- Output the new data variable. --->
<cfdump
	var="#data#"
	label="Data[ data ]"
	/>

For Cut-and-Paste