FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Operators & Expressions in JavaScript
NewsWeb Development

Operators & Expressions in JavaScript

via Dev.to TutorialAnees Abdul4h ago

What are Operators in JavaScript? Operators are symbols used to perform operations on values and variables. Types of Operators in JavaScript 1. Arithmetic Operators: Used to perform mathematical calculations Operators List: + → Addition - → Subtraction * → Multiplication / → Division % → Modulus let a = 10 ; let b = 5 ; console . log ( a + b ); // 15 console . log ( a - b ); // 5 console . log ( a * b ); // 50 console . log ( a / b ); // 2 console . log ( a % b ); // 0 2. Assignment Operators: Used to assign values to variables let x = 10 ; x += 5 ; // x = x + 5 → 15 x -= 2 ; // x = x - 2 → 13 = += -= *= /= 3. Comparison Operators: Used to compare two values (returns true/false) console . log ( 10 > 5 ); // true console . log ( 10 == " 10 " ); // true console . log ( 10 === " 10 " ); // false == → Equal (value only) === → Strict Equal (value + type) != → Not equal > < >= <= 4. Logical Operators: Used to combine conditions let age = 25 ; console . log ( age > 18 && age < 30 ); // true c

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

Meta starts testing a premium subscription on Instagram
News

Meta starts testing a premium subscription on Instagram

TechCrunch • 31m ago

I've been WFH for 7 years. These are the home office gadgets I want right now
News

I've been WFH for 7 years. These are the home office gadgets I want right now

ZDNet • 40m ago

YouTube is coming to Android Auto - but you can't watch it
News

YouTube is coming to Android Auto - but you can't watch it

ZDNet • 1h ago

The best last minute phone deals from T-Mobile, Verizon, AT&T and other carriers
News

The best last minute phone deals from T-Mobile, Verizon, AT&T and other carriers

ZDNet • 1h ago

Best Amazon Spring Sale laptop deals 2026
News

Best Amazon Spring Sale laptop deals 2026

ZDNet • 1h ago

Discover More Articles