Subtraction Operators Simple Programme
let a = 9;
// Define variable a initialize value
let b = 5;
// Define variable b initialize value
console.log(a - b);
// Using subtract operators 9 - 5
Output
4
let a = 9;
// Define variable a initialize value
let b = 5;
// Define variable b initialize value
console.log(a - b);
// Using subtract operators 9 - 5
4