Charts: Why Fast-Food Workers Are Going on Strike

Mother Jones

<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN” “http://www.w3.org/TR/REC-html40/loose.dtd”>

This Thursday, fast-food workers in more than 100 cities are planning a one-day strike to demand a “livable” wage of $15 an hour. They have a point: The lowest-paid Americans are struggling to keep up with the cost of living—and they have seen none of the gains experienced by the country’s top earners. While average incomes of the top 1 percent grew more than 270 percent since 1960, those of the bottom 90 percent grew 22 percent. And the real value of the minimum wage barely budged, increasing a total of 7 percent over those decades.

More of the numbers behind the strike and the renewed calls to raise the minimum wage:

Median hourly wage for fast-food workers nationwide:
$8.94/hour

Increase in real median wages for food service workers since 1999:
$0.10/hour

Last time the federal minimum wage exceeded $8.94/hour (in 2012 dollars):
1968

Change in the real value of the minimum wage since 1968:
-22%

Median age of fast-food workers:
29

Median age of female fast-food workers:
32

Percentage of fast-food workers who are women:
65%

Percentage of fast-food workers older than 20 who have kids:
36%

Income of someone earning $8.94/hour:
$18,595/year

Federal poverty line for a family of three:
$17,916/year

Income of someone earning $15/hour:
$31,200/year

Income needed for a “secure yet modest” living for a family with two adults and one child…
In the New York City area: $77,378/year
In rural Mississippi: $47,154/year

Growth in average real income of the top 1 percent since 1960:
271%

What the current minimum wage would be if it had grown at the same rate as top incomes:
More than $25

How would you and your family fare on a typical fast-food paycheck? How much does it really take to make ends meet in your city or state? Use this calculator to get a better sense of what fast-food workers are up against.

How many people are in your household? One Adult No Children
One Adult One Child
One Adult Two Children
One Adult Three Children
Two Adults No Children
Two Adults One Child
Two Adults Two Children
Two Adults Three ChildrenWhich state do you live in? Which area do you live in? (Area data not available for households without children.)How much do you make in a year? $

In order to make $___ a year, the typical fast-food worker has to work __ hours a week.

A household like yours in ___, ___ needs to earn $__ annually to make a secure yet modest living. A fast-food worker working full time would have to earn $__ an hour to make that much.

The average fast-food employee works less than 25 hours a week. To make a living wage in ___, ___ at current median wages, s/he would have to work __ hours a week.

In __ hours, McDonald’s serves __ customers and makes $__. That’s about __ Big Macs.

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(” + state_abbrstate + ”);
selected_state.append(option);

var fill_locale_selector = function(state_object)

selected_locale.html(“”);

for (var locale in state_object)
var option = jQuery(” + locale.replace(/,.*$/, ”) + ”);
selected_locale.append(option);

}

fill_locale_selector(bfjofirst_state)

selected_state.bind(“change”,
function()
var state = $(“#selected_state option:selected”).val();
var state_object = bfjostate;

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(” + household + ”);
selected_household.append(option);

}

fill_household_selector(bfjofirst_statefirst_locale)
*/

selected_locale.bind(“change”,
function()
var state = $(“#selected_state option:selected”).val();
var locale = $(“#selected_locale option:selected”).val();
var locale_object = bfjostatelocale;

//fill_household_selector(locale_object);

)

enable_disable_locale = function()
var household = $(“#selected_household option:selected”).val();
if (household === ‘1P0C’ 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 = bfjostatelocalehousehold;
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+)(d3)/.test(number.toString()))
number = number.toString().replace(/(d+)(d3)/, ‘$1’+’,’+’$2′);
}
return number;
}

var salary_string = commify(salary);
var yearly_living_wage_string = commify(annual_living_wage);
/*
while (/(d+)(d3)/.test(salary_string.toString()))
salary_string = salary_string.toString().replace(/(d+)(d3)/, ‘$1’+’,’+’$2′);

while (/(d+)(d3)/.test(yearly_living_wage_string.toString()))
yearly_living_wage_string = yearly_living_wage_string.toString().replace(/(d+)(d3)/, ‘$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_abbrstate);
jQuery(“#fast_food_calculator_state2”).text(state_abbrstate);
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+)(d2)/, ‘$1’+’.’+’$2′);
jQuery(“#living_wage_hourly”).text(hourly_for_living_clean);

return false;

}

)

View this article:

Charts: Why Fast-Food Workers Are Going on Strike

This entry was posted in Anchor, FF, GE, LG, ONA, Uncategorized, Venta and tagged , , , , , , , , , , , . Bookmark the permalink.

Comments are closed.