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 d74c27a commit ef2a1ddCopy full SHA for ef2a1dd
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.8){
+ if(gpa > 3.9){
52
return "A"
53
}else if(gpa >= 3.3){
54
return "A-"
0 commit comments