We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2e3b4 commit d74c27aCopy full SHA for d74c27a
lesson_07/conditionals/src/lesson7.ts
@@ -48,7 +48,7 @@ export function compareStrings(a: string, b: string): number {
48
*/
49
export function convertGpaToLetterGrade(gpa: number): string {
50
51
- if(gpa >= 3.7){
+ if(gpa > 3.8){
52
return "A"
53
}else if(gpa >= 3.3){
54
return "A-"
0 commit comments