3
Answers

What is the Result of this statement.

Photo of Rajeev Kumar

Rajeev Kumar

1y
464
1

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

if(a==b==c)

console.log("Same");

}

else {

console.log("Not Same");

}

Answers (3)