Difference between revisions of "JavaScript Operators"

From Techotopia
Jump to: navigation, search
(New page: JavaScript contains a wide range of operators many of which are used frequently by the typical web designer and some that are not. The purpose of this chapter is to cover the most common o...)
 
Line 1: Line 1:
 
JavaScript contains a wide range of operators many of which are used frequently by the typical web designer and some that are not. The purpose of this chapter is to cover the most common operators that a web designer will need in the day to day work of building dynamic web pages.  
 
JavaScript contains a wide range of operators many of which are used frequently by the typical web designer and some that are not. The purpose of this chapter is to cover the most common operators that a web designer will need in the day to day work of building dynamic web pages.  
  
The key operators for those looking to learn the essentials of javaScript fall into six categories as follows:
+
The key operators for those looking to learn the essentials of JavaScript fall into six categories as follows:
  
 
* Assignment Operators
 
* Assignment Operators

Revision as of 20:44, 11 April 2007

JavaScript contains a wide range of operators many of which are used frequently by the typical web designer and some that are not. The purpose of this chapter is to cover the most common operators that a web designer will need in the day to day work of building dynamic web pages.

The key operators for those looking to learn the essentials of JavaScript fall into six categories as follows:

  • Assignment Operators
  • Arithmetic Operators
  • Comparison Operators
  • String Operators
  • Conditional Operators
  • Boolean Operators