Login
Remember
Register
Ask a Question
What is the output of following Javascript? var a = 'letsfind'; var b = 'course'; var c = a/b; document.write(c);
0
votes
asked
Oct 9, 2022
in
JavaScript
by
Robin
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
javascript
code
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 9, 2022
by
Robin
Answer:- C
reason:- The output of following Javascript is NaN.
...