Rajeev Kumar

Rajeev Kumar

  • 704
  • 1.3k
  • 68.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)