Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
Fix lesson02
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldF committed Mar 21, 2024
1 parent 3219840 commit fcd05a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lesson02.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,5 +431,5 @@ Harald and Abdo volunteered to pay for the tickets. Use JavaScript to compute ho
let totalPrice = 50; // from the task above
let discountedPrice = totalPrice * 0.9;
let budget = 40;
let canPay = discountedPrice >= budget;
let canPay = budget >= discountedPrice;
```

0 comments on commit fcd05a6

Please sign in to comment.