Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the output of following Javascript? var a = 'letsfind'; var b = 'course'; var c = a/b; document.write(c);
Home
JavaScript
What is the output of following Javascript? var a = 'letsfind'; var b = 'course'; var c = a/b;...
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.
...