Content deleted Content added
SimLibrarian (talk | contribs) m rm contraction Tags: Mobile edit Mobile app edit iOS app edit App section source |
|||
(3 intermediate revisions by 3 users not shown) | |||
Line 4:
== Usage ==
Unless it
▲Unless it's within a pure script-based ColdFusion Component, all CFScript code must be contained within a CFScript tag pair as follows:
<syntaxhighlight lang="cfm">
<cfscript>
</cfscript>
</syntaxhighlight>
Line 43 ⟶ 41:
<syntaxhighlight lang="cfm">
<cfscript>
</cfscript>
</syntaxhighlight>
Line 95 ⟶ 93:
</syntaxhighlight>
=== Try /
<syntaxhighlight lang="javascript">
try {
Line 123 ⟶ 121:
=== Looping ===
==== For
<syntaxhighlight lang="javascript">
for (i=1; i
WriteOutput(array[i]);
}
Line 141 ⟶ 139:
</syntaxhighlight>
==== While
<syntaxhighlight lang="javascript">
x = 0;
while (x
x = x + 1;
WriteOutput(x);
Line 151 ⟶ 149:
</syntaxhighlight>
==== Do /
<syntaxhighlight lang="javascript">
x = 0;
do {
x = x + 1;
WriteOutput(x);
} while (x
// Outputs: 1
</syntaxhighlight>
==== Looping over an
<syntaxhighlight lang="javascript">
for (item in array) {
|