See the given code of JavaScript and choose the correct output from the following:

functioncomparing() { int x=9; char y=9; if(x==y) return true; else return false; }

1 Like

answer is true bcz only values are compared

1 Like