Skip to content

What’s The Difference Between a CV and a Resume?

When you’re looking for a job or applying to a program where your work and school experience is important, you’re often asked to provide a resume or CV. Same thing, right? Nope! Though they’re similar, a CV (short for “curricula vitae, which means “courses of life” in Latin) provides a much more expansive view of your career, as opposed to the job-specific resume, which is generally limited to one page in length. If this is news to you, you’re not alone! This blog post from Glassdoor breaks it down and explains which to use when.

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