3
Answers

What is the Result of this statement.

Rajeev Kumar

Rajeev Kumar

Apr 04
336
1

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

if(a==b==c)

console.log("Same");

}

else {

console.log("Not Same");

}

Answers (3)