Javascript simple problem.. | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Javascript simple problem..

z= 'banana' && 'apple'; console.log(z); Why the answer is apple?

25th Jun 2022, 1:03 PM
Sachin
Sachin - avatar
2 Respostas
+ 3
z= 'banana' && 'apple'; console.log(z); //apple z = 'apple' && 'banana'; console.log(z) //banana z = 1 && 2 console.log(z) //2 z = 2 && 1 console.log(z) //1 conclusion - always returns RHS value Explanation: as 'banana' is true and 'apple' is true so Right side value will be print 1 is true and 2 is true so answer is 2 if there is 0 && 'apple' then result would be 0 or false && 'apple' => false true && 'apple' => apple
25th Jun 2022, 1:15 PM
AĶ¢J
AĶ¢J - avatar
+ 2
&& "and" will take the last true value as it gets override the others : let c = "nanana" && "mamama" && 2; //2 As oposite from || "or" , that gets the first true value: let c = "nanana" && "mamama" && 2; //nanana
25th Jun 2022, 3:34 PM
Frank Yohan RodrĆ­guez PĆ©rez
Frank Yohan RodrĆ­guez PĆ©rez - avatar