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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]) | |
| } | |
| </cfscript> |
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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]) | |
| } | |
| </cfscript> |
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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]) | |
| } | |
| </cfscript> |
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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]+ " ") | |
| } | |
| </cfscript> |
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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]) | |
| } | |
| </cfscript> |
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> | |
| names=["athira","sano","akhil"]; | |
| for(i=1;i<=len(names);i++){ | |
| writeOutput(names[i]) | |
| } | |
| </cfscript> |
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> | |
| name="athira"; | |
| echo(name); | |
| day=now(); | |
| echo(day); | |
| result=1+2; | |
| writeOutput(result); | |
| // to print name | |
| /* t print name */ | |
| </cfscript> |
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> | |
| name="athira"; | |
| echo(name); | |
| day=now(); | |
| echo(day); | |
| result=1+2; | |
| writeOutput(result); | |
| // to print name | |
| /* t print name */ | |
| </cfscript> |
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> | |
| name="athira"; | |
| echo(name); | |
| day=now(); | |
| echo(day); | |
| result=1+2; | |
| writeOutput(result); | |
| // to print name | |
| /* t print name */ | |
| </cfscript> |
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
| <cfset arguments.submission.startDate = "03/30/2026"> | |
| <cfset arguments.submission.endDate = "04/25/2026"> | |
| <cfset arguments.submission.recurringDays = "Sunday,Monday,Thursday"> | |
| <cfloop | |
| index="currentDate" | |
| from="#arguments.submission.startDate#" | |
| to="#arguments.submission.endDate#" | |
| step="#CreateTimeSpan(1, 0, 0, 0)#"> <!--- 7 days, 0 hours, 0 mins, 0 secs ---> | |
| <cfoutput>#DateFormat(currentDate, "mm/dd/yyyy")#<br></cfoutput> |
NewerOlder