Tutorials
Courses
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
21.3K+ articles
JavaScript
12.1K+ articles
Node.js
3.5K+ articles
JavaScript-Questions
2.1K+ articles
JavaScript-Methods
539+ articles
JavaScript-DSA
499+ articles
javascript-basics
166+ articles
ES6
104+ articles
JavaScript-Course
14+ articles
javascript-operators
58 posts
Recent Articles
Popular Articles
What are these triple dots (...) in JavaScript ?
Last Updated: 15 December 2023
In JavaScript, there are multiple ways in which we can assign the value of one object to another. Sometimes we do not know the exact number of arguments that are to be ass...
read more
JavaScript
Web Technologies
javascript-operators
ES6
JavaScript-Questions
JavaScript Logical Operators
Last Updated: 13 December 2024
Logical operators in JavaScript are used to perform logical operations on values and return either true or false. These operators are commonly used in decision-making stat...
read more
JavaScript
Web Technologies
javascript-operators
Multiplication Assignment(*=) Operator in JavaScript
Last Updated: 29 March 2023
Multiplication Assignment Operator(*=) in JavaScript is used to multiply two operands and assign the result to the right operand.Syntax:variable1 *= variable2// variable1 ...
read more
JavaScript
Web Technologies
javascript-operators
OR(||) Logical Operator in JavaScript
Last Updated: 03 June 2024
The logical OR (||) (logical disjunction) operator for a set of operands is true if and only if one or more of its operands is true. It evaluates two expressions and retur...
read more
JavaScript
Web Technologies
javascript-operators
Bitwise AND Assignment (&=) Operator in JavaScript
Last Updated: 30 March 2023
The Bitwise AND Assignment Operator is represented by "=". This operator uses the binary representation of both operands and performs the bitwise AND operation and then as...
read more
JavaScript
Web Technologies
javascript-operators
Bitwise OR Assignment (|=) Operator in JavaScript
Last Updated: 19 June 2023
The Bitwise OR Assignment Operator in JavaScript is represented by (|=). This operator is used to perform a bitwise OR operation on both operands and assign the result to ...
read more
JavaScript
Web Technologies
javascript-operators
Bitwise XOR Assignment (^=) Operator in JavaScript
Last Updated: 23 May 2023
The Javascript Bitwise XOR assignment is represented by (^=). It is used to perform a bitwise XOR operation on both operands and assign the result to the left operand.Synt...
read more
JavaScript
Web Technologies
javascript-operators
What does OR Operator || in a Statement in JavaScript ?
Last Updated: 19 June 2023
JavaScript is a dynamic programming language that allows developers to write complex code with ease. One of the fundamental concepts in JavaScript is the use of operators,...
read more
JavaScript
Web Technologies
Picked
javascript-operators
JavaScript-Questions
JavaScript String Operators
Last Updated: 23 November 2024
JavaScript String Operators are used to manipulate and perform operations on strings. There are two operators which are used to modify strings in JavaScript. These operato...
read more
JavaScript
Web Technologies
javascript-basics
javascript-operators
JavaScript in and instanceof operators
Last Updated: 25 November 2024
JavaScript Relational Operators are used to compare their operands and determine the relationship between them. They return a Boolean value (true or false) based on the co...
read more
JavaScript
Web Technologies
javascript-operators
JavaScript Unary Operators
Last Updated: 25 November 2024
JavaScript Unary Operators work on a single operand and perform various operations, like incrementing/decrementing, evaluating data type, negation of a value, etc.Unary Pl...
read more
JavaScript
Web Technologies
javascript-basics
javascript-operators
JavaScript Program to Delete Property from Spread Operator
Last Updated: 09 October 2023
This article will demonstrate how to delete property from the spread operator in JavaScript. In JavaScript, the spread operator allows to create a shallow copy of an objеc...
read more
JavaScript
Web Technologies
Picked
Geeks Premier League
javascript-operators
JavaScript-Program
Geeks Premier League 2023
JavaScript Ellipsis
Last Updated: 20 September 2023
JavaScript Ellipsis (also known as the spread/rest operator) is represented by three dots (...). It is used for various tasks, such as spreading elements of an array into ...
read more
JavaScript
Web Technologies
javascript-operators
JavaScript-Questions
What does !== undefined mean in JavaScript ?
Last Updated: 12 February 2024
In JavaScript, !== is a strict inequality operator, and undefined is a special value representing the absence of a value or the lack of an assigned value to a variable. Th...
read more
JavaScript
Web Technologies
Picked
javascript-operators
JavaScript Operators Coding Practice Problems
Last Updated: 01 February 2025
Operators in JavaScript allow you to perform operations on variables and values, including arithmetic, logical, bitwise, comparison, and assignment operations. Mastering J...
read more
JavaScript
Web Technologies
javascript-operators
JavaScript-DSA
JavaScript-Questions
1
2
3
4
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !