check if score is fifty or greater if else

 // 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")

}

Comments

Popular posts from this blog

practice test of Arithmetic Operations: