Whatterz


Articles tagged increment

Using JavaScript Arithmetic Operators in ColdFusion 8
An often mentioned complaint by ColdFusion developers is the lack of operators commonly found in other programming languages such as JavaScript. For example, instead of the greater-than (>) symbol we have been restricted to the more wordy GT or GREATER THAN operator. However, in ColdFusion 8 this has changed and we have more freedom to use familiar JavaScript operators in blocks. In the following series of posts, I will introduce the changes and show some simple examples. The first in the series is Arithmetic Operators. Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value. The standard arithmetic operators are addition (+), subtraction (-), multiplication (*), and division (/). These operators work as they do in most other programming languages. Read more – ‘Using JavaScript Arithmetic Operators in ColdFusion 8’.