Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions task-1/leap-year.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import promptSync from 'prompt-sync';
import promptSync from "prompt-sync";
const prompt = promptSync();

const year = Number(prompt("Enter a year to check if it is a leap year: "));

// Write your code here
// Guidance:
// Step 1: prompt the user to enter a year
// Step 2: convert the user input to a number so we can perform calculations
// Step 3: Implement the logic
if (year < 1 || year > 9999) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This condition validates the year range correctly.
However, if the user enters text instead of a number, Number() returns NaN, and this check doesn’t catch it. That’s why the program prints Yes, NaN is a leap year.

Could you think of a way to improve this check?

Copy link
Author

@YanaP1312 YanaP1312 Feb 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @mo92othman ! I added checks for isNaN and isInteger, and pushed the changes.

console.log("Invalid year!");
} else if (!(year % 400) || (!(year % 4) && (year % 100))) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice job, this condition correctly covers all the leap year rules!

For readability, you could consider writing the logic in a more easier to read way.

Another possibility is assigning it to a variable like isLeapYear. This would make the code easier to read and avoid repeating logic in the future. This is an optional improvement to keep in mind.

const isLeapYear = (year % 4 === 0) && (year % 100 !== 0 || year % 400 === 0);

if (isLeapYear) {
  console.log(`Yes, ${year} is a leap year`);
} else {
  console.log(`No, ${year} is not a leap year`);
}

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! I’ve extracted the leap year logic into an isLeapYear variable and pushed the changes.

console.log(`Yes, ${year} is a leap year`);
} else {
console.log(`No, ${year} is not a leap year`);
}
23 changes: 19 additions & 4 deletions task-2/login.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
// Do not change the line below
import { errorMessage, successMessage } from './app.js';
import { errorMessage, successMessage } from "./app.js";

let incorrectAttempts = 0;

function onLogin(username, password) {
// Write your code here.
// Use the variables 'username' and 'password' to access the input values
// Use incorrectAttempts to track the number of failed attempts
const isValid =
(username === "admin" && password === "Hack1234") ||
(username === "user" && password === "7654321");

if (incorrectAttempts > 3) {
errorMessage("Login blocked: Too many incorrect attempts");
return;
} else if (isValid) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice that you used a boolean (isValid), this makes more readable 👍

incorrectAttempts = 0;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice, resetting incorrectAttempts after a successful login is a good idea, but it wasn’t required in the task instructions. For the future, whenever you add extra things, check if the behavior is expected.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the feedback. I added the reset because I was thinking about how a real login system usually works, where a successful login clears previous failed attempts. I understand it wasn’t required in the task, so I’ll keep that in mind for future exercises.

successMessage("Logged in successfully");
} else {
incorrectAttempts++;
if (incorrectAttempts === 4) {
errorMessage("Login blocked: Too many incorrect attempts");
} else {
errorMessage("Incorrect credentials");
}
}
}

// Do not change the line below
Expand Down
17 changes: 10 additions & 7 deletions task-3/converter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@ const prompt = promptSync();
const EUR_USD_RATE = 1.1643;

// Menu display
conole.log("Hello and welcome to the currency converter. Please choose: ");
console.log("Hello and welcome to the currency converter. Please choose: ");
console.log("1: Convert EUR to USD");
console.log("2: Convert USD to EUR");
const menuSelection = prompt("Select your option [1 or 2]: ");
console.log("3: Display the current exchange rate");
const menuSelection = prompt("Select your option [1, 2 or 3]: ");

console.log("\n");

if (menuSelection === "1") {
// EUR to USD
const eurAmountInput = prompt("Enter amount in EUR: ");
const eurAmountNum = Number(eurAmountInput);
if (Number.isNaN(eurAmountNum) || eurAmountNum > 0) {
if (Number.isNaN(eurAmountNum) || eurAmountNum <= 0) {
console.log("Please enter a valid positive number for the amount.");
} else {
const usdAmount = eurAmountNum * EUR_USD_RATE;
Expand All @@ -26,12 +27,14 @@ if (menuSelection === "1") {
// USD to EUR
const usdAmountInput = prompt("Enter amount in USD: ");
const usdAmountNum = Number(usdAmountInput);
if (Number.isNaN(usdAmountNum) || usdAmountNum < 0) {
if (Number.isNaN(usdAmountNum) || usdAmountNum <= 0) {
console.log("Please enter a valid positive number for the amount.");
} else {
const eurAmount = usdAmountNum / eur_usd_rate;
console.log(usdAmountNum.toFixed(2) + ' USD is equal to ' + usdAmountNum.toFixed(2) + ' EUR.');
const eurAmount = usdAmountNum / EUR_USD_RATE;
console.log(usdAmountNum.toFixed(2) + ' USD is equal to ' + eurAmount.toFixed(2) + ' EUR.');
}
} else if(menuSelection === "3"){
console.log(`The current exchange rate is 1 EUR = ${EUR_USD_RATE} USD.`)
} else {
console.log("Invalid selection. Please choose either 1 or 2.");
console.log("Invalid selection. Please choose either 1, 2 or 3");
}
Loading