Rajeev Kumar

Rajeev Kumar

  • 900
  • 785
  • 46.4k

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)