Precedence and Associativity of Logical Operators in TypeScript

Logical Operators Precedence and Associativity in TypeScript

 
Operators in TypeScript have rules of Precedence and Associativity that determine how expressions are evaluated. Here I describe Precedence and Associativity separately.
 

Precedence

 
If I talk about the Precedence of logical operators then you have seen that when an expression mixes && and || then that evaluation must be done in the correct order. In an expression, the operator with the highest precedence is grouped with an operand first, then the next highest operator will be grouped with this operands, and that process continues, as shown in the following table, showing which has the highest precedence and which the lowest, and how to associativity works, when several logical operators have the same precedence.
 
Precedence Operator Associativity
High ! (Not) Left-Right
Medium && (and) Left-Right
Low || (OR) Left-Right
 
For example: If we write this code:
  1. if (mark > 60 || mark <= 75 && mark != 100)    // Precedence  
  2. {   
  3. document.write("True");  
  4. }  
Then the result is true because the above example is evaluated in this way:
 
(a)
  mark <= 75 && mark != 100, this expression is evaluated first, due to the && (logical and operator). The (&&) and operator has higher precedence then || (Logical OR operator), and it gives the result True.
 
(b)
After step (a) above, the remaining part, if (mark > 60 || True) or say (False || True) is evaluated, and finally, it also gives True as the result.
 

Associativity

 
If in any expression contains several logical operators of the same precedence then how to solve that expression? The answer of this question is Associativity, and logical operators, which have the same Precedence in a single expression or say when two or more operators (such as (&&) and (&&)) with the same precedence can be applied to the same operand, the left to right associativity will cause the left-most operator to be applied first.
 
For example
: If we write this code:
  1. if (mark > 60 && mark <= 75 && mark != 100) {  
  2.  document.write("True");  
  3. else {  
  4.  document.write("False");  
  5. }  
Then the result is false because the above example is evaluated in this way:
 
(a)
  mark > 60 && mark <= 75, this expression is evaluated first, due to the && (logical and operator), The ( &&) and operator has the same precedence, and I explained above that if any operators with two or more operators (such as (&&) and (&&)) with the same precedence is applied to the same operand then the left to right associativity will cause the left-most operator to be applied first. Hence it gives False for the result.
 
(b)
After step (a) above, the remaining part, if (False &&  mark != 100 ) or say (False || True) is evaluated, and finally, it also gives False as the result.
 
The following examples tell you, how to use Precedence and Associativity in TypeScript. Use the following procedure to create a program using logical operators.
 
Step 1
 
Open Visual Studio 2012 and click on "File" menu -> "New" -> "Project". A window is subsequently opened, provide the name of your application like "LogicalPrecedenceAndAssociativity," then click on the Ok button.
 
Step 2
 
After Step 1 your project has been created. The Solution Explorer, which is at the right side of Visual Studio, contains the js file, ts file, CSS file, and HTML files.
 
Step 3
 
The code of the Logical operator's program.
 
LogicalPrecedenceAndAssociativity
.ts
  1. class LogicalPrecedenceAndAssociativity {  
  2.  MyFunction() {  
  3.   var mark = 60;  
  4.   if (mark > 60 || mark <= 75 && mark != 100) {  
  5.    document.write("Precedence result = True </br>");  
  6.   }  
  7.   if (mark > 60 && mark <= 75 && mark != 100) {  
  8.    document.write("Associativity result =True");  
  9.   } else {  
  10.    document.write("Associativity result = False");  
  11.   }  
  12.  }  
  13. }  
  14. window.onload = () => {  
  15.  var data = new LogicalPrecedenceAndAssociativity();  
  16.  data.MyFunction();  
  17. }  
default.html
  1. <!DOCTYPEhtml>  
  2. <htmllang="en"  
  3.     xmlns="http://www.w3.org/1999/xhtml">  
  4.     <head>  
  5.         <metacharset="utf-8"/>  
  6.         <title>TypeScript HTML App</title>  
  7.         <linkrel="stylesheet"href="app.css"type="text/css"/>  
  8.         <scriptsrc="app.js">  
  9.         </script>  
  10.     </head>  
  11.     <body>  
  12.         <divid="content"/>  
  13.     </body>  
  14. </html>  
app.js
  1. var LogicalPrecedenceAndAssociativity = (function() {  
  2.  function LogicalPrecedenceAndAssociativity() {}  
  3.  LogicalPrecedenceAndAssociativity.prototype.MyFunction = function() {  
  4.   var mark = 60;  
  5.   if (mark > 60 || mark <= 75 && mark != 100) {  
  6.    document.write("Precedence result = True </br>");  
  7.   }  
  8.   if (mark > 60 && mark <= 75 && mark != 100) {  
  9.    document.write("Associativity result =True");  
  10.   } else {  
  11.    document.write("Associativity result = False");  
  12.   }  
  13.  };  
  14.  return LogicalPrecedenceAndAssociativity;  
  15. })();  
  16. window.onload = function() {  
  17.  var data = new LogicalPrecedenceAndAssociativity();  
  18.  data.MyFunction();  
  19. };  
Step 4
 
Output
 
Logical-operator-Precedence-Associativity-in-TypeScript.jpg


Similar Articles