CFScript functional equivalents to ColdFusion tags

Tag CFScript equivalent

cfset

Direct assignment, such as Myvar=1;

cfoutput

WriteOutput function

cfif, cfelseif, cfelse

if and else statements

cfswitch, cfcase, cfdefaultcase

switch, case, and default statements

Indexed cfloop

for loops

Conditional cfloop

while loops and do while loops

Structure cfloop

for in loop. (There is no equivalent for queries, lists, or objects.)

cfbreak

break statement. CFScript also has a continue statement that has no equivalent CFML tag.

cftry, cfcatch

try and catch statements

cfcookie

Direct assignment of Cookie scope memory-only variables. You cannot use direct assignment to set persistent cookies that are stored on the user's system.

cfobject

CreateObject function

View comments on LiveDocs