Creates a new array populated with any arguments that have been passed to the function.
array()
→ returns array
Creates and dump a new array.
exampleArray = Array("example-string", 1, {structExample = "value"}, [1,2,3]);
dump(exampleArray);
Creates and dump a new array.
exampleArray = ["example-string", 1, {structExample = "value"}, [1,2,3]];
dump(exampleArray);
Signup for cfbreak
to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.