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");
}
}
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");
}
}