Rajeev Kumar

Rajeev Kumar

  • 800
  • 1k
  • 62.1k

What is the Result of this statement.

Apr 4 2024 5:37 AM

let a=10; let b=10; let c=10;

if(a==b==c)

console.log("Same");

}

else {

console.log("Not Same");

}


Answers (3)