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
Which statement will return the value false?
Home
JavaScript
Which statement will return the value false?
+1
vote
asked
Feb 6, 2020
in
JavaScript
by
rajeshsharma
Which statement will return the value false?
var result = 20 < 50;
var result = 30 >= 30;
var result = (20 === "20") && (50 < 30);
#javascript-function
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 7, 2020
by
SakshiSharma
var result = (20 === "20") && (50 < 30);
...