Кто нибудь может объяснить смысл этой функции на JS
Code: Select all
<!DOCTYPE html>
<html>
<body>
<p>Click the button to parse different strings.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var a=5;
var b=1;
var c="";
if(!!"false"){
a=a+5;
b=3;
c="a";
};
if(!!0){
a=a+5;
b=b+2;
c="b";
}
alert(a+b+" "+c);
}
</script>
</body>
</html>
Что с чем тут сравнивается в if?
Thanks