Computer Science, asked by mfarooqh7, 7 months ago

Write a program to calculate overtime pay of employees. Overtime is paid at the rate of Rs. 12.00 per hour for every hour worked above 40 hours. Assume that employees do not work for fractional part of an hour.

need answer in the language of javascript

Answers

Answered by srajfaroquee
1

Answer:

var workingHours ;

var overtime = workingHours - 40 ;

var amount = overtime * 12.00 ;

Similar questions