UAW strike: Shawn Fain sets new deadline to prevent further worker walkouts.
UAW President Sets New Deadline for Contract Negotiations
United Auto Workers President Shawn Fain has issued a new deadline for contract negotiations, warning that more workers will go on strike if their demands are not met. In a video message on Monday evening, Fain announced that the new deadline is noon on Friday, Sept. 22. He emphasized that the Big Three auto manufacturers must take the negotiations seriously and work towards progress, or else more locals will join the strike.
House Republicans Opposed to Stopgap Spending Measure
Fain made it clear that the UAW is not willing to wait or play games. The union represents nearly 150,000 members, making it the largest auto union in the United States. The negotiations between the UAW and the three major auto manufacturers are ongoing, with the main point of contention being top-line pay. The UAW is demanding a 36% pay increase, while the manufacturers have offered only half of that.
The strike, known as the “Stand Up Strike,” entered its fifth day on Tuesday. Instead of all plants striking simultaneously, select locals are chosen to strike, paying tribute to past strikes. On Friday morning, around 13,000 UAW members went on strike at plants operated by Ford, General Motors, and Stellantis in multiple states.
Fain highlighted the rapid changes in the industry and the plight of workers being left behind. He stated that UAW workers’ pay has only increased by a mere 6% over the past four years, which is insufficient to keep up with inflation. In fact, auto workers are earning less in real wages than they did 20 years ago. This is why the UAW has chosen to take a stand.
Click here to read more from the Washington Examiner.
How is the result of the perimeter calculation stored and displayed in the code
Here is a simple code in JavaScript that calculates the perimeter of a rectangle with given length and width:
“`javascript
function calculatePerimeter(length, width) {
return 2 * (length + width);
}
let length = 5;
let width = 3;
let perimeter = calculatePerimeter(length, width);
console.log(‘Perimeter:’, perimeter);
“`
In this code, we define a function `calculatePerimeter` that takes two parameters, `length` and `width`. The function calculates the perimeter of the rectangle by multiplying the sum of the length and width by 2. We then declare variables `length` and `width` with the desired values and call the `calculatePerimeter` function with these values. The result is stored in the `perimeter` variable, and we output it to the console using `console.log`.
" Conservative News Daily does not always share or support the views and opinions expressed here; they are just those of the writer."