Question: What will be the output for the following javascript code fragment:<script>
var currentWord="75";
var currentNumber=75;
var outcome=(currentWord==currentNumber);
document.write(outcome);
</script>
A
B
C
D
true
B
false
C
75
D
150
Note: Not available