to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
With the holiday season well underway, the following video from 2024 showing how a number of teens engaged in productive activities to help shoppers with gift wrapping services seems a good way to start our analysis of the teen employment situation.
Now, to the main story! The U.S. Bureau of Labor Statistics is slowly releasing the employment situation data that went unreported during the government shutdown fiasco. The data it reported for September 2025, which would have been reported at the beginning of October 2025 if not for a minority of Senators who obstructed a bill to fund the U.S. government's operations, shows that teen employment rebounded strongly in September 2025.
More remarkably, it was mostly led by younger teens, Age 16 and 17, whose seasonally adjusted numbers jumped from their August 2025 low. Older teens also had gains, which were solid, but paled in comparison to the numbers for younger teens.
The following chart captures the unexpected surge:
Unfortunately, there is a cloud on the horizon for teen employment. AI technology would appear set to decimate traditional teen employment opportunities in the years ahead:
For American teens, the summer job isn’t what it used to be. By 2030, it may barely exist at all. That’s the urgent finding from high school senior Karissa Tang, who spent the last 18 months researching how artificial intelligence is poised to reshape youth employment across the U.S.
Her work, conducted under the mentorship of UCLA Anderson’s Professor Geis, breaks the debate down to actual numbers that should alarm policymakers and parents alike. According to her analysis, AI will displace over 770,000 teen jobs by the end of the decade, gutting 27% of the most common positions teens hold today....
Tang’s paper, “The Impact of AI on American Teenage Employment by 2030”, tracks ten job categories that make up just over half of all teen employment. Her method connects market forecasts for specific automation and AI-powered tools, such as self-checkout systems or restaurant kiosks, to how many people each system replaces.
Tang identifies cashier jobs as especially vulnerable, with AI-programmed kiosks enabling a 54% decline.
But Tang sees where teens may have advantages over older members of the work force:
While it might be easy to assume AI hits all workers equally, Tang argues that’s a mistake. Teens often perform narrower tasks, have less experience, and earn lower wages, she explains. That makes them especially replaceable, or, in some cases, worth keeping precisely because they cost less.
“The ‘teen advantage’ is that they cost less,” Tang notes. “So for companies who are looking at AI to help cut costs, they may choose to lay off a higher proportion of older workers.”
It could be that younger teens may see disproportionate gains in the job market of the future.
Labels: jobs
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.