Tasks

Estimated reading: 1 minute 125 views
				
					// Prompt user for a day of the week
let dayOfWeek = prompt("Enter a day of the week:");

// Convert the input to lowercase to handle case-insensitivity
dayOfWeek = dayOfWeek.toLowerCase();
				
			

Task -1

				
					Enter a number: 7
The number 7 is positive.

Enter a number: -2
The number -2 is negative.

Enter a number: 0
The number 0 is zero.

				
			

Task -2

				
					Enter a day of the week: Tuesday
Tuesday is a weekday.

Enter a day of the week: Saturday
Saturday is a weekend day.

				
			

Task -3

				
					Enter your age: 22
You are eligible to vote in the upcoming election.

Enter your age: 16
You are not eligible to vote. You need to wait 2 years to vote.

				
			
Share this Doc

Tasks

Or copy link