Skip to main content

Javscript operators

Welcome file

JavaScript Operators

The instanceof Operator

The instanceof operator is used to check the type of an object at run time. The instanceof operator
returns a boolean value that indicates if an object is an instance of a particular class. we can see below example.
var fruits = ["apple", "mango", "pineapple"];

fruits instanceof Array;          // returns true
fruits instanceof Object;         // returns true
fruits instanceof String;         // returns false
fruits instanceof Number;         // returns false

in operator

The in operator is used to check whether a given property is available on an object.
property in object
var fruits = ["apple", "mango", "pineapple"];

apple in fruit      //returns true
0 in fruit          // returns true
5 in fruit          //returns false
length in fruit     // return true

The delete Operator

The delete operator deletes a property from an object.
var person = {firstName:"John", lastName:"Doe", age:40, eyeColor:"red"};
delete person.age;   // or delete person["age"]; 

The typeof Operator

The typeof operator returns the type of a variable, object, function or expression
typeof "Ron"                       //returns string 
typeof 5                          // returns number
typeof NaN                        // returns number
typeof false                      // returns boolean
typeof [1, 2, 3, 4]               // returns object
typeof {name:'Ron', age:23}       // returns object
typeof new Date()                 // returns object
typeof function () {}             // returns function
typeof fruit                      // returns undefined (if fruit is not declared)
typeof null                       // returns object

Logical Operators

Logical operators are used to determine the logic between variables or values.
&& And operator
|| OR operator
! Not operator
if x = 5 and y = 4, the table below explains the logical operators:
(x < 10 && y > 1)              // return is true 
(x === 5 || y === 5)                             // return  is true
!(x === y)                                       // return is true

JavaScript Bitwise Operators

Bit operators work on 32 bits numbers. Any numeric operand in the operation is converted into a 32 bit number.
The result is converted back to a JavaScript number.
& AND x = 5 & 1 0101 & 0001 0001 1
| OR x = 5 | 1 0101 | 0001 0101 5
~ NOT x = ~ 5 ~0101 1010 10
^ XOR x = 5 ^ 1 0101 ^ 0001 0100 4
<< Left shift x = 5 << 1 0101 << 1 1010 10
Right shift x = 5 >> 1 0101 >> 1 0010

Comparison Operators

Comparison operators are used to determine equality or difference between variables or values.
Given that x = 7, the table below explains the comparison operators:
description
== equal to === equal value or equal type
!= not equal !== not equal value or not equal type
> greater thane < less than
>= greater than or equal to <= less than or equal to
     x == 8 // return false 
     x == 7 // return true 
 x === "7" // return false 
 x === 5 // return true 
 x != 7    // return true 
 x !== "7"  // return true 
 x !== 7 // return false 
    x > 8 // return false
 x < 8 // return true 
 x >= 8 // return false 
 x <= 8 // return true

JavaScript String Operators

The + operator, and the += operator can also be used to concatenate (add) strings.
var text1 ="hello",
var text2 ="Ron"'
text3 = text1 + text2    // return  hello Ron
text1  += text2         // return  hello Ron

JavaScript Assignment Operators

Assignment operators are used to assign values to JavaScript variables.
Given that x = 12 and y = 3, the table below explains the assignment operators:
assignment operators JavaScript Arithmetic Operators
Arithmetic operators are used to perform arithmetic between variables and/or values.
Given that y = 5, the table below explains the arithmetic operators:
Operator Description Example Result in y Result in x Try it
  •          Addition x = y + 2 y = 5 x = 7 
    
  •          Subtraction x = y - 2 y = 5 x = 3 
    
  •          Multiplication x = y * 2 y = 5 x = 10 
    
/ Division x = y / 2 y = 5 x = 2.5
% Modulus (division remainder) x = y % 2 y = 5 x = 1
++ Increment x = ++y y = 6 x = 6 x = y++ y = 6 x = 5
– Decrement x = --y y = 4 x = 4 x = y-- y = 4 x = 5

Comments

Popular

HTML Basic

HTML (Hypertext Markup Language) Basic What is HTML ? HTML invented by Tim Berners-Lee in 1990. HTML stands for hypertext markup language. Web browsers receive HTML documents from a web server or from local storage and render the documents into multimedia web pages .We can create web page with different elements like audio, video, image, tables, link, list & text etc, with CSS & JavaScript. version of HTML There are 6 version of HTML HTML Version Year HTML 1991 HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 XHTML 2000 HTML 5 2014 (Latest version) Latest version of HTML Latest version of html is HTML 5.0 , in latest version of html provided new tags for multimedia support. Now we are creating web page  index.html  How we can create Web page <!DOCTYPE html> < html > < head > < title > This is my First Web Page </ title > </ head > < body > < h1 > My First heading ...

this keyword in javascript

Welcome file this keyword is used to point at the current object in the code. For instance: If the code is presently at an object created by the help of the ‘new’ keyword, then ‘this’ keyword will point to the object being created. It has different values depending on where it is used: In a method, this refers to the owner object . Alone, this refers to the global object . In strict mode this refer to the global object . In a function, this refers to the global object . In a function, in strict mode, this is undefined . In an object method , this refers to the current object. In the example, this refers to the employee object. this Alone when this keyword is used alone, not written inside a function or object then it will refer to global object. & In browser window global object will be [object window] In a browser window the Global object is [object Window] : var x = this; this in a Function (Default) ...

Component in Angular

Component in Angular A component is a basic building block of UI in an Angular. it controls on UI of application.  it is easily reusable. or we can say Components are defined using the @component decorator. A component has a selector, template, style, and other properties, using which it specifies the metadata required to process the component. How to create Component we have angular CLI command of creating an angular component ng generate component component-name in short form, we can write it as ng g c component-name once you hit this command below file will add inside the component directory HTML: it defines user interface which contains HTML/View of Application, directive & data binding CSS: it has the style of the respective component TS: (it is typescript file, we have to import component class inside TS file, it has class, decorator) Spec: The spec files are unit tests for your source files. The convention for Angular applications is to have a .spec.ts ...