Conditional 4

PHOTO EMBED

Fri Jul 09 2021 06:16:06 GMT+0000 (Coordinated Universal Time)

Saved by @buildadev

var a = 5;
var b = 4;

if( a>4)
{
    if(b>3)
    {
        console.log("The value of a is greater than 4 and the value of b is greater than 3");
    }
}
content_copyCOPY