Fast food workers make very little money. How little money? Very little money! So little in fact that a single parent of one living in New York City would have to work 144 hours a week “to make a secure yet modest living.” But apparently, those wages are not low enough, a group of McDonald’s workers allege, to stop the company from also stealing from them.
Wage-theft suits brought against McDonald’s this week in Michigan, California, and New York accuse the chain of refusing to pay overtime, ordering people to work off the clock, and straight up erasing hours from timecards. If these allegations are true, and maybe they’re not, but maybe they are, then the company has been illegally screwing people who are already being legally screwed.
This is the most recent development in a months-long campaign by fast-food workers pushing for a $15/hour starting wage.
You shouldn’t eat fast food because fast food is bad for you but if you do eat fast food (and you will eat fast food at least once in a while because nobody can be perfect all the time), be nice to the people who serve you. They have to fight tooth and nail to make ends meet.
Could you make it on fast food wages? Here’s a depressing calculator. (Spoiler: Probably not!)
var median_fast_food_worker_wage = 8.94; // Source: National Employment Law Project, July 2013; http://nelp.3cdn.net/84a67b124db45841d4_o0m6bq42h.pdf var work_weeks_per_year = 52; var months_per_year = 12; var average_fast_food_worker_hours_per_week = 24.4; var average_weeks_in_a_month = 4.348; var hours_worked_at_full_time = 40;
var days_in_2012 = 366; //leap year var McDonalds_customers_per_day_in_2012 = 69000000; // Source: McDonalds 2012 Annual Report var hours_in_day = 24; var mcD_systemwide_restaurants = 34480; var mcD_served_per_hour = McDonalds_customers_per_day_in_2012 / hours_in_day;
var mcD_earnings_in_2012 = 27567000000; // Source: McDonalds 2012 Annual Report http://www.aboutmcdonalds.com/content/dam/AboutMcDonalds/Investors/Investor%202013/2012%20Annual%20Report%20Final.pdf var mcD_earned_per_hour = Math.round(mcD_earnings_in_2012 / days_in_2012 / hours_in_day);
var cost_of_big_mac = 4;
var first_state = 'AK'; var first_locale = 'Anchorage, AK HUD Metro FMR Area'; var state_abbr = { 'AL' : 'Alabama', 'AK' : 'Alaska', 'AS' : 'America Samoa', 'AZ' : 'Arizona', 'AR' : 'Arkansas', 'CA' : 'California', 'CO' : 'Colorado', 'CT' : 'Connecticut', 'DE' : 'Delaware', 'DC' : 'District of Columbia', 'FM' : 'Micronesia1', 'FL' : 'Florida', 'GA' : 'Georgia', 'GU' : 'Guam', 'HI' : 'Hawaii', 'ID' : 'Idaho', 'IL' : 'Illinois', 'IN' : 'Indiana', 'IA' : 'Iowa', 'KS' : 'Kansas', 'KY' : 'Kentucky', 'LA' : 'Louisiana', 'ME' : 'Maine', 'MH' : 'Islands1', 'MD' : 'Maryland', 'MA' : 'Massachusetts', 'MI' : 'Michigan', 'MN' : 'Minnesota', 'MS' : 'Mississippi', 'MO' : 'Missouri', 'MT' : 'Montana', 'NE' : 'Nebraska', 'NV' : 'Nevada', 'NH' : 'New Hampshire', 'NJ' : 'New Jersey', 'NM' : 'New Mexico', 'NY' : 'New York', 'NC' : 'North Carolina', 'ND' : 'North Dakota', 'OH' : 'Ohio', 'OK' : 'Oklahoma', 'OR' : 'Oregon', 'PW' : 'Palau', 'PA' : 'Pennsylvania', 'PR' : 'Puerto Rico', 'RI' : 'Rhode Island', 'SC' : 'South Carolina', 'SD' : 'South Dakota', 'TN' : 'Tennessee', 'TX' : 'Texas', 'UT' : 'Utah', 'VT' : 'Vermont', 'VI' : 'Virgin Island', 'VA' : 'Virginia', 'WA' : 'Washington', 'WV' : 'West Virginia', 'WI' : 'Wisconsin', 'WY' : 'Wyoming' }
var selected_state = jQuery("#selected_state"); var selected_locale = jQuery("#selected_locale"); var selected_household = jQuery("#selected_household");
for (var state in bfjo) { var option = jQuery('
var fill_locale_selector = function(state_object) {
selected_locale.html("");
for (var locale in state_object) { var option = jQuery('
fill_locale_selector(bfjo[first_state])
selected_state.bind("change", function() { var state = $("#selected_state option:selected").val(); var state_object = bfjo[state];
fill_locale_selector(state_object);
} )
/* var fill_household_selector = function(locale_object) { var selected_household = jQuery("#selected_household");
selected_household.html("");
for (var household in locale_object) { var option = jQuery('
fill_household_selector(bfjo[first_state][first_locale]) */
selected_locale.bind("change", function() { var state = $("#selected_state option:selected").val(); var locale = $("#selected_locale option:selected").val(); var locale_object = bfjo[state][locale];
//fill_household_selector(locale_object); } )
enable_disable_locale = function() { var household = $("#selected_household option:selected").val(); if (household === '1P0C' || household === '2P0C') { selected_locale.attr('disabled', 'disabled'); } else { selected_locale.attr('disabled', ''); } } selected_household.bind("change", function() { enable_disable_locale(); } ); enable_disable_locale();
jQuery("#calculate_this").bind("submit", function() {
var state = $("#selected_state option:selected").val(); var locale = $("#selected_locale option:selected").val(); var household = $("#selected_household option:selected").val(); var salary = parseInt($("#input_salary").val());
var annual_living_wage = bfjo[state][locale][household]; console.log(state); console.log(locale); console.log(household); console.log(annual_living_wage); var hourly_for_living = annual_living_wage / months_per_year / average_weeks_in_a_month / hours_worked_at_full_time;
var hours_to_live_per_month = annual_living_wage / months_per_year / median_fast_food_worker_wage; var weeks_to_live_per_month = hours_to_live_per_month / hours_worked_at_full_time;
var salary_monthly = salary / months_per_year; var hours_to_salary_monthly = salary_monthly / median_fast_food_worker_wage; var weeks_to_salary_monthly = hours_to_salary_monthly / hours_worked_at_full_time;
var hours_living_a_week = hours_to_live_per_month / average_weeks_in_a_month; var hours_salary_a_week = hours_to_salary_monthly / average_weeks_in_a_month;
var commify = function(number) { while (/(d+)(d{3})/.test(number.toString())){ number = number.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } return number; }
var salary_string = commify(salary); var yearly_living_wage_string = commify(annual_living_wage); /* while (/(d+)(d{3})/.test(salary_string.toString())){ salary_string = salary_string.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } while (/(d+)(d{3})/.test(yearly_living_wage_string.toString())){ yearly_living_wage_string = yearly_living_wage_string.toString().replace(/(d+)(d{3})/, '$1'+','+'$2'); } */
jQuery("#calculated").show(); jQuery("#fast_food_calculator_hours").text(Math.round(hours_to_live_per_month)); jQuery("#fast_food_calculator_state").text(state_abbr[state]); jQuery("#fast_food_calculator_state2").text(state_abbr[state]); if (household === "1P0C" || household === "2P0C") { jQuery("#fast_food_calculator_locale").text(''); jQuery("#fast_food_calculator_locale2").text(''); } else { jQuery("#fast_food_calculator_locale").text(locale.replace(/,.*$/, '') + ','); jQuery("#fast_food_calculator_locale2").text(locale.replace(/,.*$/, '') + ','); } jQuery("#salary").text(salary_string); jQuery("#fast_food_calculator_time").text(Math.round(hours_to_salary_monthly));
jQuery("#living_hours_per_week").text(Math.round(hours_living_a_week)); jQuery("#living_hours_per_week2").text(Math.round(hours_living_a_week));
jQuery("#salary_hours_per_week").text(Math.round(hours_salary_a_week)); jQuery("#fast_food_calculator_living_wage_annual").text(yearly_living_wage_string);
jQuery("#mc_d_customers_served").text( commify( Math.round( Math.round(hours_living_a_week) * mcD_served_per_hour ) ) ); jQuery("#mc_d_money_earned").text( commify(Math.round(Math.round(hours_living_a_week) * mcD_earned_per_hour)) );
jQuery("#big_mac_count").text( commify( Math.round( Math.round(hours_living_a_week) * mcD_earned_per_hour / cost_of_big_mac ) ) );
console.log(hourly_for_living); var hourly_for_living_clean = Math.round(hourly_for_living * 100) .toString().replace(/(d+)(d{2})/, '$1'+'.'+'$2'); jQuery("#living_wage_hourly").text(hourly_for_living_clean);
return false;
}
)