ProdanTenev

Excellent grade

Mar 18th, 2022
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.14 KB | None | 0 0
  1. function excellentGrade(grade) {
  2.   if(grade>=5.50){
  3.     console.log("Excellent");
  4.   } else {
  5.     console.log("Not excellent");
  6.   }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment