Skip to content

Resume Buzzwords To Avoid

As we get into spring and summer vacation and graduation looms, students step up their job and internship hunts and send their resumes out. There are many factors that can make you more and less appealing to recruiters. The words you use in your resume can have a huge impact. Think that highlighting what “creative” “hard worker” who thinks “outside the box” will up your odds of getting an interview? Think again.

This article from Monster.com shares some buzzwords to avoid and suggestions for better alternatives. 

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'); } }); }); });