0 votes
in JavaScript by
What is the output of following Javascript?

var a = 'letsfind';

var b = 'course';

var c = a/b;

document.write(c);

a) letsfindcourse

b) letsfind/course

c) NaN

d) None of the above

1 Answer

0 votes
by

Answer:-  C

reason:- The output of following Javascript is NaN.

Related questions

0 votes
asked Mar 23, 2021 in JavaScript by sharadyadav1986
0 votes
asked Oct 10, 2022 in JavaScript by SakshiSharma
...