Using JavaScript Assignment Operators in ColdFusion 8

In my first post in this series, I introduced Using JavaScript Arithmetic Operators in ColdFusion 8. Now we’ll concentrate on Assignment operators.

An assignment operator assigns a value to its left operand based on the value of its right operand.

The basic assignment operator is equal (=), which assigns the value of its right operand to its left operand. That is, x = y assigns the value of y to x. The other assignment operators are usually shorthand for standard operations, as shown in the following table.

Operator Shorthand operator Meaning
+= x += y x = x + y
-= x -= y x = x - y
*= x *= y x = x * y
/= x /= y x = x / y
%= x %= y x = x % y

In unusual situations, the assignment operator is not identical to the Meaning expression in the above table. When the left operand of an assignment operator itself contains an assignment operator, the left operand is evaluated only once. For example:

<cfscript>
a[i++] += 5 //i is evaluated only once
a[i++] = a[i++] + 5 //i is evaluated twice
</cfscript>


Bookmark:

  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • Google
  • Ma.gnolia
  • YahooMyWeb
  • Facebook
  • Reddit
  • BlinkList
  • blogmarks
  • Fark
  • Furl
  • Simpy
  • Slashdot
  • Spurl
  • Wists
  • NewsVine
  • Pownce

Tags: , , , , , , , , ,

Simon,

Thanks for this article. It really helps to explains some things to my simple mind.

Although it isn’t arithmetic the &= operator for appending strings has saved me a lot of time lately.

Keep up the good work

It is interesting you should mention the String operator &= as I have a small article about it at:

http://www.simonwhatley.co.uk/using-javascript-string-operators-in-coldfusion-8