// Program to check if the number is positive let a = 1 if(a < 0){ console.log(` ${a} is negative`) } else if (a >= 0){ console.log('this is positive no') } else{ console.log("no this number is not found") }
// check if score is fifty or greater let score = 30 if (score >= 50) { console.log(`yes ${score} is greater then 50`) } else{ console.log("you are smaler then 50") }