Skip to content

The Best Jobs of 2018

The U.S. News & World Report recently released their annual list of best jobs. The ranking looks at jobs across 15 different categories and factors in things such as salary, room for growth, and work-life balance.  This year’s top four winners for Best Job Overall are:

  1. Software Developer
  2. Dentist
  3. Physician Assistant
  4. Nurse Practitioner

Healthcare and tech jobs ranked high throughout the list and are expected to continue to be good job options going forward into the next ten years.

You can read the full list here.

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });