Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Making a Salary Calculator | Section
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
JavaScript Essentials for Beginners - 1768407374405

bookChallenge: Making a Salary Calculator

Task

Swipe to start coding

You are assigned a task for making a salary calculator. The company has a fixed hourly pay for all the employees. The salary is calculated by multiplying the number of hours worked with the fixed hourly pay.

  • Declare & initialize a constant called HOURLY_RATE with a value of 25.00.
  • Declare & initialize a variable called hoursWorked with a value of 164.
  • Declare a variable called totalPay and set it equal to the product of hoursWorked and HOURLY_RATE.
  • Use a console.log line to output the following message: The calculated total payment is: X, where X should be the calculated totalPay.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 23
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

close

bookChallenge: Making a Salary Calculator

Swipe to show menu

Task

Swipe to start coding

You are assigned a task for making a salary calculator. The company has a fixed hourly pay for all the employees. The salary is calculated by multiplying the number of hours worked with the fixed hourly pay.

  • Declare & initialize a constant called HOURLY_RATE with a value of 25.00.
  • Declare & initialize a variable called hoursWorked with a value of 164.
  • Declare a variable called totalPay and set it equal to the product of hoursWorked and HOURLY_RATE.
  • Use a console.log line to output the following message: The calculated total payment is: X, where X should be the calculated totalPay.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 23
single

single

some-alt