This content originally appeared on DEV Community and was authored by Dinesh G
Day Five class in JavaScript. I shared the topics, What I learn Today.
Mark greater than or equal to so give grade
otherwise – no grade
Flow chart
let mark=?
if(mark>=50)
{
if(mark>=90)
{
log("a+");
}
else if(mark>=75)
{
log("a");
}
else{
log("b");
}
}
else{
log("no grade")
}
HAPPY CODING
This content originally appeared on DEV Community and was authored by Dinesh G