Advertisement
Didart

Excellent Result

Mar 5th, 2022
724
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function excellentResult(input) {
  2.     let grade = input[0];
  3.  
  4.     if (grade >= 5.50) {
  5.         console.log("Excellent!");
  6.     }
  7. }
  8.  
  9. excellentResult(["6"])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement