Example:
This file contains 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 defined in cfm page which will add two number and will return the value | |
function addTwoNumber(num1, num2) { | |
return num1 + num2; | |
} | |
varriable.x = variables.addTwoNumber; //Function defined in this page is assigned to the variable x | |
writeOutPut("Call to addTwoNumber : " & varriable.x(10,12)); //Function call to AddTwoNumber by using variable | |
variables.y = createObject("component", "test").addTwoNum; // Function defined in test.cfc is assigned to variable y | |
writeOutPut("<br/>Call to addTwoNum :" & variables.y(10,20)); //Function call to addTwoNum by using variable | |
</cfscript> |
test.cfc
This file contains 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
component { | |
public function addTwoNum(num1, num2) { | |
return num1 + num2; | |
} | |
} |
After this I got the following result: