What is the result of the following code?
let value = '10';
let result = (value == 10) ? 'True' : 'False';
console.log(result);
What is the result of the following code?
let value = '10';
let result = (value == 10) ? 'True' : 'False';
console.log(result);