Difference between revisions of "Operators"

From SDU
Jump to: navigation, search
m (Logical Operators)
m
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
[[Category:Customizations]]
 +
<div align='center'><font color="green">To make corrections or additions to this article, select the ''edit'' tab above.<br>
 +
To discuss or ask questions about this article, select the ''discussion'' tab above.</font></div>
 +
 
== Arithmetic Operators ==
 
== Arithmetic Operators ==
 
 
<source lang="javascript">
 
<source lang="javascript">
 
+
 
+
Line 10: Line 13:
  
 
== Comparison Operators ==
 
== Comparison Operators ==
 
 
<source lang="javascript">
 
<source lang="javascript">
 
==
 
==
Line 17: Line 19:
  
 
== Concatenation Operators ==
 
== Concatenation Operators ==
 
 
<source lang="javascript">
 
<source lang="javascript">
 
+
 
+
Line 23: Line 24:
  
 
== Logical Operators ==
 
== Logical Operators ==
 
 
<source lang="javascript">
 
<source lang="javascript">
 
||
 
||
Line 29: Line 29:
 
!
 
!
 
</source>
 
</source>
 
 
 
 
----
 
<div align='center'><font color="green">To make corrections or additions to this article, select the ''edit'' tab above.<br>
 
To discuss or ask questions about this article, select the ''discussion'' tab above.</font></div>
 

Revision as of 05:43, 26 July 2008

To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Arithmetic Operators

<source lang="javascript"> + -

/ </source>

Comparison Operators

<source lang="javascript"> == != </source>

Concatenation Operators

<source lang="javascript"> + </source>

Logical Operators

<source lang="javascript"> || && ! </source>