Skip to content

Commit 561fba5

Browse files
committed
Fix typo in solution 4·61
1 parent 67d8f00 commit 561fba5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/exercises/04-conditionals-solutions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ if (myUsername === employeeUsername && myPassword === employeePassword) {
231231
console.log('Welcome, junior employee Zarya.');
232232
} else if (salary >= intermediateSalaryMinimum && salary <= intermediateSalaryMaximum) {
233233
console.log('Welcome, intermediate employee Zarya.');
234-
} else if (salary >= upperSalaryMinimum && salary <= upperSalaryMaximum) {
234+
} else if (salary >= seniorSalaryMinimum && salary <= seniorSalaryMaximum) {
235235
console.log('Welcome, senior employee Zarya.');
236236
} else {
237237
console.log('Welcome, employee Zarya.');

0 commit comments

Comments
 (0)