Subtraction Operators Simple Programme in JavaScript

Subtraction Operators

On this page

Arithmetic Operators

let a = 9;
    // Define variable a initialize value
    
    let b = 5;
    // Define variable b initialize value
    
    console.log(a - b);
    

Output

4