Created
March 2, 2019 20:01
-
-
Save andrew-dixon/da2e1b4238f1b46e8039f7dd88aa46d2 to your computer and use it in GitHub Desktop.
CF Function without defined parameters.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
function myFunction() { | |
writeDump(arguments); | |
writeOutput('<br>'); | |
} | |
myFunction(); | |
myFunction( 1 , 2 , 'a' , 'b' ); | |
myFunction( number1=1 , | |
number2=2 , | |
letter1='a' , | |
letter2='b' ); | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment