CINXE.COM
Definitions, Meanings, & Spanish Translations | Lexico.com
<!DOCTYPE html><html lang="en" data-theme="light"><head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.lexico.com/","20220822232740","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1661210860"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>Definitions, Meanings, & Spanish Translations | Lexico.com</title> <meta name="description" content="Find definitions, language articles, and help with translating Spanish to English (and vice versa)."> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Definitions, Meanings, & Spanish Translations | Lexico.com"> <meta name="twitter:description" content="Find definitions, language articles, and help with translating Spanish to English (and vice versa)."> <meta name="twitter:image" content="https://web.archive.org/web/20220822232740im_/https://www.lexico.com/lexico-logo.png"> <meta property="og:title" content="Definitions, Meanings, & Spanish Translations | Lexico.com"> <meta property="og:description" content="Find definitions, language articles, and help with translating Spanish to English (and vice versa)."> <meta property="og:type" content="website"> <meta property="og:url" content="https://web.archive.org/web/20220822232740/https://www.lexico.com/"> <meta property="og:locale" content="en_GB"> <meta property="og:site_name" content="Lexico Dictionaries | English"> <meta property="og:image" content="https://web.archive.org/web/20220822232740im_/https://www.lexico.com/lexico-logo.png"><meta charset="utf-8"/><meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/><meta itemprop="copyrightHolder" content="Lexico Dictionaries"/><meta itemprop="copyrightYear" content="2022"/><meta itemprop="inLanguage" content="en"/><meta itemprop="publisher" content="Lexico Dictionaries"/><meta itemprop="daisy-page-name" content="lexico-home"/><link href="https://www.lexico.com" rel="publisher"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/en_dictionary.xml" rel="search" title="Lexico UK Dictionary search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/noad.xml" rel="search" title="Lexico US Dictionary search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/thesaurus.xml" rel="search" title="Lexico Synonyms search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/en_grammar.xml" rel="search" title="Lexico English Grammar search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/es_dictionary.xml" rel="search" title="Lexico Spanish search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/to_english.xml" rel="search" title="Lexico Spanish - English search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/from_english.xml" rel="search" title="Lexico English - Spanish search" type="application/opensearchdescription+xml"/><link href="/web/20220822232740/https://www.lexico.com/opensearch/es_grammar.xml" rel="search" title="Lexico Spanish Grammar search" type="application/opensearchdescription+xml"/><script>/** * Copyright 2016 Google Inc. All Rights Reserved. * * Licensed under the W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE. * * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document * */ (function() { 'use strict'; // Exit early if we're not running in a browser. if (typeof window !== 'object') { return; } // Exit early if all IntersectionObserver and IntersectionObserverEntry // features are natively supported. if ('IntersectionObserver' in window && 'IntersectionObserverEntry' in window && 'intersectionRatio' in window.IntersectionObserverEntry.prototype) { // Minimal polyfill for Edge 15's lack of `isIntersecting` // See: https://github.com/w3c/IntersectionObserver/issues/211 if (!('isIntersecting' in window.IntersectionObserverEntry.prototype)) { Object.defineProperty(window.IntersectionObserverEntry.prototype, 'isIntersecting', { get: function () { return this.intersectionRatio > 0; } }); } return; } /** * Returns the embedding frame element, if any. * @param {!Document} doc * @return {!Element} */ function getFrameElement(doc) { try { return doc.defaultView && doc.defaultView.frameElement || null; } catch (e) { // Ignore the error. return null; } } /** * A local reference to the root document. */ var document = (function(startDoc) { var doc = startDoc; var frame = getFrameElement(doc); while (frame) { doc = frame.ownerDocument; frame = getFrameElement(doc); } return doc; })(window.document); /** * An IntersectionObserver registry. This registry exists to hold a strong * reference to IntersectionObserver instances currently observing a target * element. Without this registry, instances without another reference may be * garbage collected. */ var registry = []; /** * The signal updater for cross-origin intersection. When not null, it means * that the polyfill is configured to work in a cross-origin mode. * @type {function(DOMRect|ClientRect, DOMRect|ClientRect)} */ var crossOriginUpdater = null; /** * The current cross-origin intersection. Only used in the cross-origin mode. * @type {DOMRect|ClientRect} */ var crossOriginRect = null; /** * Creates the global IntersectionObserverEntry constructor. * https://w3c.github.io/IntersectionObserver/#intersection-observer-entry * @param {Object} entry A dictionary of instance properties. * @constructor */ function IntersectionObserverEntry(entry) { this.time = entry.time; this.target = entry.target; this.rootBounds = ensureDOMRect(entry.rootBounds); this.boundingClientRect = ensureDOMRect(entry.boundingClientRect); this.intersectionRect = ensureDOMRect(entry.intersectionRect || getEmptyRect()); this.isIntersecting = !!entry.intersectionRect; // Calculates the intersection ratio. var targetRect = this.boundingClientRect; var targetArea = targetRect.width * targetRect.height; var intersectionRect = this.intersectionRect; var intersectionArea = intersectionRect.width * intersectionRect.height; // Sets intersection ratio. if (targetArea) { // Round the intersection ratio to avoid floating point math issues: // https://github.com/w3c/IntersectionObserver/issues/324 this.intersectionRatio = Number((intersectionArea / targetArea).toFixed(4)); } else { // If area is zero and is intersecting, sets to 1, otherwise to 0 this.intersectionRatio = this.isIntersecting ? 1 : 0; } } /** * Creates the global IntersectionObserver constructor. * https://w3c.github.io/IntersectionObserver/#intersection-observer-interface * @param {Function} callback The function to be invoked after intersection * changes have queued. The function is not invoked if the queue has * been emptied by calling the `takeRecords` method. * @param {Object=} opt_options Optional configuration options. * @constructor */ function IntersectionObserver(callback, opt_options) { var options = opt_options || {}; if (typeof callback != 'function') { throw new Error('callback must be a function'); } if ( options.root && options.root.nodeType != 1 && options.root.nodeType != 9 ) { throw new Error('root must be a Document or Element'); } // Binds and throttles `this._checkForIntersections`. this._checkForIntersections = throttle( this._checkForIntersections.bind(this), this.THROTTLE_TIMEOUT); // Private properties. this._callback = callback; this._observationTargets = []; this._queuedEntries = []; this._rootMarginValues = this._parseRootMargin(options.rootMargin); // Public properties. this.thresholds = this._initThresholds(options.threshold); this.root = options.root || null; this.rootMargin = this._rootMarginValues.map(function(margin) { return margin.value + margin.unit; }).join(' '); /** @private @const {!Array<!Document>} */ this._monitoringDocuments = []; /** @private @const {!Array<function()>} */ this._monitoringUnsubscribes = []; } /** * The minimum interval within which the document will be checked for * intersection changes. */ IntersectionObserver.prototype.THROTTLE_TIMEOUT = 100; /** * The frequency in which the polyfill polls for intersection changes. * this can be updated on a per instance basis and must be set prior to * calling `observe` on the first target. */ IntersectionObserver.prototype.POLL_INTERVAL = null; /** * Use a mutation observer on the root element * to detect intersection changes. */ IntersectionObserver.prototype.USE_MUTATION_OBSERVER = true; /** * Sets up the polyfill in the cross-origin mode. The result is the * updater function that accepts two arguments: `boundingClientRect` and * `intersectionRect` - just as these fields would be available to the * parent via `IntersectionObserverEntry`. This function should be called * each time the iframe receives intersection information from the parent * window, e.g. via messaging. * @return {function(DOMRect|ClientRect, DOMRect|ClientRect)} */ IntersectionObserver._setupCrossOriginUpdater = function() { if (!crossOriginUpdater) { /** * @param {DOMRect|ClientRect} boundingClientRect * @param {DOMRect|ClientRect} intersectionRect */ crossOriginUpdater = function(boundingClientRect, intersectionRect) { if (!boundingClientRect || !intersectionRect) { crossOriginRect = getEmptyRect(); } else { crossOriginRect = convertFromParentRect(boundingClientRect, intersectionRect); } registry.forEach(function(observer) { observer._checkForIntersections(); }); }; } return crossOriginUpdater; }; /** * Resets the cross-origin mode. */ IntersectionObserver._resetCrossOriginUpdater = function() { crossOriginUpdater = null; crossOriginRect = null; }; /** * Starts observing a target element for intersection changes based on * the thresholds values. * @param {Element} target The DOM element to observe. */ IntersectionObserver.prototype.observe = function(target) { var isTargetAlreadyObserved = this._observationTargets.some(function(item) { return item.element == target; }); if (isTargetAlreadyObserved) { return; } if (!(target && target.nodeType == 1)) { throw new Error('target must be an Element'); } this._registerInstance(); this._observationTargets.push({element: target, entry: null}); this._monitorIntersections(target.ownerDocument); this._checkForIntersections(); }; /** * Stops observing a target element for intersection changes. * @param {Element} target The DOM element to observe. */ IntersectionObserver.prototype.unobserve = function(target) { this._observationTargets = this._observationTargets.filter(function(item) { return item.element != target; }); this._unmonitorIntersections(target.ownerDocument); if (this._observationTargets.length == 0) { this._unregisterInstance(); } }; /** * Stops observing all target elements for intersection changes. */ IntersectionObserver.prototype.disconnect = function() { this._observationTargets = []; this._unmonitorAllIntersections(); this._unregisterInstance(); }; /** * Returns any queue entries that have not yet been reported to the * callback and clears the queue. This can be used in conjunction with the * callback to obtain the absolute most up-to-date intersection information. * @return {Array} The currently queued entries. */ IntersectionObserver.prototype.takeRecords = function() { var records = this._queuedEntries.slice(); this._queuedEntries = []; return records; }; /** * Accepts the threshold value from the user configuration object and * returns a sorted array of unique threshold values. If a value is not * between 0 and 1 and error is thrown. * @private * @param {Array|number=} opt_threshold An optional threshold value or * a list of threshold values, defaulting to [0]. * @return {Array} A sorted list of unique and valid threshold values. */ IntersectionObserver.prototype._initThresholds = function(opt_threshold) { var threshold = opt_threshold || [0]; if (!Array.isArray(threshold)) threshold = [threshold]; return threshold.sort().filter(function(t, i, a) { if (typeof t != 'number' || isNaN(t) || t < 0 || t > 1) { throw new Error('threshold must be a number between 0 and 1 inclusively'); } return t !== a[i - 1]; }); }; /** * Accepts the rootMargin value from the user configuration object * and returns an array of the four margin values as an object containing * the value and unit properties. If any of the values are not properly * formatted or use a unit other than px or %, and error is thrown. * @private * @param {string=} opt_rootMargin An optional rootMargin value, * defaulting to '0px'. * @return {Array<Object>} An array of margin objects with the keys * value and unit. */ IntersectionObserver.prototype._parseRootMargin = function(opt_rootMargin) { var marginString = opt_rootMargin || '0px'; var margins = marginString.split(/\s+/).map(function(margin) { var parts = /^(-?\d*\.?\d+)(px|%)$/.exec(margin); if (!parts) { throw new Error('rootMargin must be specified in pixels or percent'); } return {value: parseFloat(parts[1]), unit: parts[2]}; }); // Handles shorthand. margins[1] = margins[1] || margins[0]; margins[2] = margins[2] || margins[0]; margins[3] = margins[3] || margins[1]; return margins; }; /** * Starts polling for intersection changes if the polling is not already * happening, and if the page's visibility state is visible. * @param {!Document} doc * @private */ IntersectionObserver.prototype._monitorIntersections = function(doc) { var win = doc.defaultView; if (!win) { // Already destroyed. return; } if (this._monitoringDocuments.indexOf(doc) != -1) { // Already monitoring. return; } // Private state for monitoring. var callback = this._checkForIntersections; var monitoringInterval = null; var domObserver = null; // If a poll interval is set, use polling instead of listening to // resize and scroll events or DOM mutations. if (this.POLL_INTERVAL) { monitoringInterval = win.setInterval(callback, this.POLL_INTERVAL); } else { addEvent(win, 'resize', callback, true); addEvent(doc, 'scroll', callback, true); if (this.USE_MUTATION_OBSERVER && 'MutationObserver' in win) { domObserver = new win.MutationObserver(callback); domObserver.observe(doc, { attributes: true, childList: true, characterData: true, subtree: true }); } } this._monitoringDocuments.push(doc); this._monitoringUnsubscribes.push(function() { // Get the window object again. When a friendly iframe is destroyed, it // will be null. var win = doc.defaultView; if (win) { if (monitoringInterval) { win.clearInterval(monitoringInterval); } removeEvent(win, 'resize', callback, true); } removeEvent(doc, 'scroll', callback, true); if (domObserver) { domObserver.disconnect(); } }); // Also monitor the parent. var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; if (doc != rootDoc) { var frame = getFrameElement(doc); if (frame) { this._monitorIntersections(frame.ownerDocument); } } }; /** * Stops polling for intersection changes. * @param {!Document} doc * @private */ IntersectionObserver.prototype._unmonitorIntersections = function(doc) { var index = this._monitoringDocuments.indexOf(doc); if (index == -1) { return; } var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; // Check if any dependent targets are still remaining. var hasDependentTargets = this._observationTargets.some(function(item) { var itemDoc = item.element.ownerDocument; // Target is in this context. if (itemDoc == doc) { return true; } // Target is nested in this context. while (itemDoc && itemDoc != rootDoc) { var frame = getFrameElement(itemDoc); itemDoc = frame && frame.ownerDocument; if (itemDoc == doc) { return true; } } return false; }); if (hasDependentTargets) { return; } // Unsubscribe. var unsubscribe = this._monitoringUnsubscribes[index]; this._monitoringDocuments.splice(index, 1); this._monitoringUnsubscribes.splice(index, 1); unsubscribe(); // Also unmonitor the parent. if (doc != rootDoc) { var frame = getFrameElement(doc); if (frame) { this._unmonitorIntersections(frame.ownerDocument); } } }; /** * Stops polling for intersection changes. * @param {!Document} doc * @private */ IntersectionObserver.prototype._unmonitorAllIntersections = function() { var unsubscribes = this._monitoringUnsubscribes.slice(0); this._monitoringDocuments.length = 0; this._monitoringUnsubscribes.length = 0; for (var i = 0; i < unsubscribes.length; i++) { unsubscribes[i](); } }; /** * Scans each observation target for intersection changes and adds them * to the internal entries queue. If new entries are found, it * schedules the callback to be invoked. * @private */ IntersectionObserver.prototype._checkForIntersections = function() { if (!this.root && crossOriginUpdater && !crossOriginRect) { // Cross origin monitoring, but no initial data available yet. return; } var rootIsInDom = this._rootIsInDom(); var rootRect = rootIsInDom ? this._getRootRect() : getEmptyRect(); this._observationTargets.forEach(function(item) { var target = item.element; var targetRect = getBoundingClientRect(target); var rootContainsTarget = this._rootContainsTarget(target); var oldEntry = item.entry; var intersectionRect = rootIsInDom && rootContainsTarget && this._computeTargetAndRootIntersection(target, targetRect, rootRect); var rootBounds = null; if (!this._rootContainsTarget(target)) { rootBounds = getEmptyRect(); } else if (!crossOriginUpdater || this.root) { rootBounds = rootRect; } var newEntry = item.entry = new IntersectionObserverEntry({ time: now(), target: target, boundingClientRect: targetRect, rootBounds: rootBounds, intersectionRect: intersectionRect }); if (!oldEntry) { this._queuedEntries.push(newEntry); } else if (rootIsInDom && rootContainsTarget) { // If the new entry intersection ratio has crossed any of the // thresholds, add a new entry. if (this._hasCrossedThreshold(oldEntry, newEntry)) { this._queuedEntries.push(newEntry); } } else { // If the root is not in the DOM or target is not contained within // root but the previous entry for this target had an intersection, // add a new record indicating removal. if (oldEntry && oldEntry.isIntersecting) { this._queuedEntries.push(newEntry); } } }, this); if (this._queuedEntries.length) { this._callback(this.takeRecords(), this); } }; /** * Accepts a target and root rect computes the intersection between then * following the algorithm in the spec. * TODO(philipwalton): at this time clip-path is not considered. * https://w3c.github.io/IntersectionObserver/#calculate-intersection-rect-algo * @param {Element} target The target DOM element * @param {Object} targetRect The bounding rect of the target. * @param {Object} rootRect The bounding rect of the root after being * expanded by the rootMargin value. * @return {?Object} The final intersection rect object or undefined if no * intersection is found. * @private */ IntersectionObserver.prototype._computeTargetAndRootIntersection = function(target, targetRect, rootRect) { // If the element isn't displayed, an intersection can't happen. if (window.getComputedStyle(target).display == 'none') return; var intersectionRect = targetRect; var parent = getParentNode(target); var atRoot = false; while (!atRoot && parent) { var parentRect = null; var parentComputedStyle = parent.nodeType == 1 ? window.getComputedStyle(parent) : {}; // If the parent isn't displayed, an intersection can't happen. if (parentComputedStyle.display == 'none') return null; if (parent == this.root || parent.nodeType == /* DOCUMENT */ 9) { atRoot = true; if (parent == this.root || parent == document) { if (crossOriginUpdater && !this.root) { if (!crossOriginRect || crossOriginRect.width == 0 && crossOriginRect.height == 0) { // A 0-size cross-origin intersection means no-intersection. parent = null; parentRect = null; intersectionRect = null; } else { parentRect = crossOriginRect; } } else { parentRect = rootRect; } } else { // Check if there's a frame that can be navigated to. var frame = getParentNode(parent); var frameRect = frame && getBoundingClientRect(frame); var frameIntersect = frame && this._computeTargetAndRootIntersection(frame, frameRect, rootRect); if (frameRect && frameIntersect) { parent = frame; parentRect = convertFromParentRect(frameRect, frameIntersect); } else { parent = null; intersectionRect = null; } } } else { // If the element has a non-visible overflow, and it's not the <body> // or <html> element, update the intersection rect. // Note: <body> and <html> cannot be clipped to a rect that's not also // the document rect, so no need to compute a new intersection. var doc = parent.ownerDocument; if (parent != doc.body && parent != doc.documentElement && parentComputedStyle.overflow != 'visible') { parentRect = getBoundingClientRect(parent); } } // If either of the above conditionals set a new parentRect, // calculate new intersection data. if (parentRect) { intersectionRect = computeRectIntersection(parentRect, intersectionRect); } if (!intersectionRect) break; parent = parent && getParentNode(parent); } return intersectionRect; }; /** * Returns the root rect after being expanded by the rootMargin value. * @return {ClientRect} The expanded root rect. * @private */ IntersectionObserver.prototype._getRootRect = function() { var rootRect; if (this.root && !isDoc(this.root)) { rootRect = getBoundingClientRect(this.root); } else { // Use <html>/<body> instead of window since scroll bars affect size. var doc = isDoc(this.root) ? this.root : document; var html = doc.documentElement; var body = doc.body; rootRect = { top: 0, left: 0, right: html.clientWidth || body.clientWidth, width: html.clientWidth || body.clientWidth, bottom: html.clientHeight || body.clientHeight, height: html.clientHeight || body.clientHeight }; } return this._expandRectByRootMargin(rootRect); }; /** * Accepts a rect and expands it by the rootMargin value. * @param {DOMRect|ClientRect} rect The rect object to expand. * @return {ClientRect} The expanded rect. * @private */ IntersectionObserver.prototype._expandRectByRootMargin = function(rect) { var margins = this._rootMarginValues.map(function(margin, i) { return margin.unit == 'px' ? margin.value : margin.value * (i % 2 ? rect.width : rect.height) / 100; }); var newRect = { top: rect.top - margins[0], right: rect.right + margins[1], bottom: rect.bottom + margins[2], left: rect.left - margins[3] }; newRect.width = newRect.right - newRect.left; newRect.height = newRect.bottom - newRect.top; return newRect; }; /** * Accepts an old and new entry and returns true if at least one of the * threshold values has been crossed. * @param {?IntersectionObserverEntry} oldEntry The previous entry for a * particular target element or null if no previous entry exists. * @param {IntersectionObserverEntry} newEntry The current entry for a * particular target element. * @return {boolean} Returns true if a any threshold has been crossed. * @private */ IntersectionObserver.prototype._hasCrossedThreshold = function(oldEntry, newEntry) { // To make comparing easier, an entry that has a ratio of 0 // but does not actually intersect is given a value of -1 var oldRatio = oldEntry && oldEntry.isIntersecting ? oldEntry.intersectionRatio || 0 : -1; var newRatio = newEntry.isIntersecting ? newEntry.intersectionRatio || 0 : -1; // Ignore unchanged ratios if (oldRatio === newRatio) return; for (var i = 0; i < this.thresholds.length; i++) { var threshold = this.thresholds[i]; // Return true if an entry matches a threshold or if the new ratio // and the old ratio are on the opposite sides of a threshold. if (threshold == oldRatio || threshold == newRatio || threshold < oldRatio !== threshold < newRatio) { return true; } } }; /** * Returns whether or not the root element is an element and is in the DOM. * @return {boolean} True if the root element is an element and is in the DOM. * @private */ IntersectionObserver.prototype._rootIsInDom = function() { return !this.root || containsDeep(document, this.root); }; /** * Returns whether or not the target element is a child of root. * @param {Element} target The target element to check. * @return {boolean} True if the target element is a child of root. * @private */ IntersectionObserver.prototype._rootContainsTarget = function(target) { var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; return ( containsDeep(rootDoc, target) && (!this.root || rootDoc == target.ownerDocument) ); }; /** * Adds the instance to the global IntersectionObserver registry if it isn't * already present. * @private */ IntersectionObserver.prototype._registerInstance = function() { if (registry.indexOf(this) < 0) { registry.push(this); } }; /** * Removes the instance from the global IntersectionObserver registry. * @private */ IntersectionObserver.prototype._unregisterInstance = function() { var index = registry.indexOf(this); if (index != -1) registry.splice(index, 1); }; /** * Returns the result of the performance.now() method or null in browsers * that don't support the API. * @return {number} The elapsed time since the page was requested. */ function now() { return window.performance && performance.now && performance.now(); } /** * Throttles a function and delays its execution, so it's only called at most * once within a given time period. * @param {Function} fn The function to throttle. * @param {number} timeout The amount of time that must pass before the * function can be called again. * @return {Function} The throttled function. */ function throttle(fn, timeout) { var timer = null; return function () { if (!timer) { timer = setTimeout(function() { fn(); timer = null; }, timeout); } }; } /** * Adds an event handler to a DOM node ensuring cross-browser compatibility. * @param {Node} node The DOM node to add the event handler to. * @param {string} event The event name. * @param {Function} fn The event handler to add. * @param {boolean} opt_useCapture Optionally adds the even to the capture * phase. Note: this only works in modern browsers. */ function addEvent(node, event, fn, opt_useCapture) { if (typeof node.addEventListener == 'function') { node.addEventListener(event, fn, opt_useCapture || false); } else if (typeof node.attachEvent == 'function') { node.attachEvent('on' + event, fn); } } /** * Removes a previously added event handler from a DOM node. * @param {Node} node The DOM node to remove the event handler from. * @param {string} event The event name. * @param {Function} fn The event handler to remove. * @param {boolean} opt_useCapture If the event handler was added with this * flag set to true, it should be set to true here in order to remove it. */ function removeEvent(node, event, fn, opt_useCapture) { if (typeof node.removeEventListener == 'function') { node.removeEventListener(event, fn, opt_useCapture || false); } else if (typeof node.detatchEvent == 'function') { node.detatchEvent('on' + event, fn); } } /** * Returns the intersection between two rect objects. * @param {Object} rect1 The first rect. * @param {Object} rect2 The second rect. * @return {?Object|?ClientRect} The intersection rect or undefined if no * intersection is found. */ function computeRectIntersection(rect1, rect2) { var top = Math.max(rect1.top, rect2.top); var bottom = Math.min(rect1.bottom, rect2.bottom); var left = Math.max(rect1.left, rect2.left); var right = Math.min(rect1.right, rect2.right); var width = right - left; var height = bottom - top; return (width >= 0 && height >= 0) && { top: top, bottom: bottom, left: left, right: right, width: width, height: height } || null; } /** * Shims the native getBoundingClientRect for compatibility with older IE. * @param {Element} el The element whose bounding rect to get. * @return {DOMRect|ClientRect} The (possibly shimmed) rect of the element. */ function getBoundingClientRect(el) { var rect; try { rect = el.getBoundingClientRect(); } catch (err) { // Ignore Windows 7 IE11 "Unspecified error" // https://github.com/w3c/IntersectionObserver/pull/205 } if (!rect) return getEmptyRect(); // Older IE if (!(rect.width && rect.height)) { rect = { top: rect.top, right: rect.right, bottom: rect.bottom, left: rect.left, width: rect.right - rect.left, height: rect.bottom - rect.top }; } return rect; } /** * Returns an empty rect object. An empty rect is returned when an element * is not in the DOM. * @return {ClientRect} The empty rect. */ function getEmptyRect() { return { top: 0, bottom: 0, left: 0, right: 0, width: 0, height: 0 }; } /** * Ensure that the result has all of the necessary fields of the DOMRect. * Specifically this ensures that `x` and `y` fields are set. * * @param {?DOMRect|?ClientRect} rect * @return {?DOMRect} */ function ensureDOMRect(rect) { // A `DOMRect` object has `x` and `y` fields. if (!rect || 'x' in rect) { return rect; } // A IE's `ClientRect` type does not have `x` and `y`. The same is the case // for internally calculated Rect objects. For the purposes of // `IntersectionObserver`, it's sufficient to simply mirror `left` and `top` // for these fields. return { top: rect.top, y: rect.top, bottom: rect.bottom, left: rect.left, x: rect.left, right: rect.right, width: rect.width, height: rect.height }; } /** * Inverts the intersection and bounding rect from the parent (frame) BCR to * the local BCR space. * @param {DOMRect|ClientRect} parentBoundingRect The parent's bound client rect. * @param {DOMRect|ClientRect} parentIntersectionRect The parent's own intersection rect. * @return {ClientRect} The local root bounding rect for the parent's children. */ function convertFromParentRect(parentBoundingRect, parentIntersectionRect) { var top = parentIntersectionRect.top - parentBoundingRect.top; var left = parentIntersectionRect.left - parentBoundingRect.left; return { top: top, left: left, height: parentIntersectionRect.height, width: parentIntersectionRect.width, bottom: top + parentIntersectionRect.height, right: left + parentIntersectionRect.width }; } /** * Checks to see if a parent element contains a child element (including inside * shadow DOM). * @param {Node} parent The parent element. * @param {Node} child The child element. * @return {boolean} True if the parent node contains the child node. */ function containsDeep(parent, child) { var node = child; while (node) { if (node == parent) return true; node = getParentNode(node); } return false; } /** * Gets the parent node of an element or its host element if the parent node * is a shadow root. * @param {Node} node The node whose parent to get. * @return {Node|null} The parent node or null if no parent exists. */ function getParentNode(node) { var parent = node.parentNode; if (node.nodeType == /* DOCUMENT */ 9 && node != document) { // If this node is a document node, look for the embedding frame. return getFrameElement(node); } // If the parent has element that is assigned through shadow root slot if (parent && parent.assignedSlot) { parent = parent.assignedSlot.parentNode } if (parent && parent.nodeType == 11 && parent.host) { // If the parent is a shadow root, return the host element. return parent.host; } return parent; } /** * Returns true if `node` is a Document. * @param {!Node} node * @returns {boolean} */ function isDoc(node) { return node && node.nodeType === 9; } // Exposes the constructors globally. window.IntersectionObserver = IntersectionObserver; window.IntersectionObserverEntry = IntersectionObserverEntry; }()); </script><script type="application/ld+json" id="search_schema"> { "@context": "https://web.archive.org/web/20220822232740/https://schema.org", "@type": "WebSite", "url": "https://web.archive.org/web/20220822232740/https://www.lexico.com/en", "potentialAction": { "@type": "SearchAction", "target": "https://web.archive.org/web/20220822232740/https://www.lexico.com/en/definition/{search_term_string}", "query-input": "required name=search_term_string" } } </script><link rel="canonical" href="https://web.archive.org/web/20220822232740/https://www.lexico.com/"/><script>// GTM (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://web.archive.org/web/20220822232740/https://www.googletagmanager.com/gtm.js?id='+i+dl;j.addEventListener('load', function() {var _ge = new CustomEvent('gtm_loaded', { bubbles: true });d.dispatchEvent(_ge);});f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WDVJNM5'); // BING Webmaster Tools Clarity (function(c,l,a,r,i,t,y){c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};t=l.createElement(r);t.async=1;t.src="https://web.archive.org/web/20220822232740/https://www.clarity.ms/tag/"+i;y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);})(window, document, "clarity", "script", "4w9afsnc8y");</script><link href="/web/20220822232740im_/https://www.lexico.com/apple-touch-icon.png" rel="apple-touch-icon"/><link href="/web/20220822232740im_/https://www.lexico.com/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="/web/20220822232740im_/https://www.lexico.com/icon-192x192.png" rel="icon" sizes="192x192" type="image/png"/><link href="/web/20220822232740im_/https://www.lexico.com/icon-256x256.png" rel="icon" sizes="256x256" type="image/png"/><link href="/web/20220822232740im_/https://www.lexico.com/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="/web/20220822232740im_/https://www.lexico.com/favicon.ico?v2" rel="shortcut icon"/><link href="/web/20220822232740/https://www.lexico.com/manifest.json" rel="manifest"/><link color="#50b46c" href="/web/20220822232740im_/https://www.lexico.com/safari-pinned-tab.svg" rel="mask-icon"/><meta content="#50b46c" name="msapplication-TileColor"/><meta content="/mstile-144x144.png" name="msapplication-TileImage"/><meta content="#50b46c" name="theme-color"/><meta name="csrf-param" content="authenticity_token"/> <meta name="csrf-token" content="tykw0U73v+2z4UnXAyPRZislhwl9/YZ0O9M1DkHShMF/EHSCWPp6kfXDpza7JwaYgXDtCx/5EyTDjSF/LOgOvw=="/><script>var controller = "pages"; var action = "home"; var csite = "EN"; var page_category = ""; var debug_on = false;</script></head><body class="controller__pages action__home dictionary__odo partition_ dictionary__en " lang="en" id="homePage" data-trending-words="{"shouldLogTrendingWord":false,"partition":null,"word":null}"><link rel="stylesheet" media="all" href="/web/20220822232740cs_/https://www.lexico.com/assets/application_monolingual-92a8d05e8edea965a1b48792867a1e20533e7664c80eca231a81f1756e9f55f9.css"/><script src="/web/20220822232740js_/https://www.lexico.com/packs/js/public-952c970ca07b65fb21aa.js"></script><noscript><iframe src="https://web.archive.org/web/20220822232740if_/https://www.googletagmanager.com/ns.html?id=GTM-WDVJNM5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="wrapper"><header id="header"><div class="bg close transition"></div><div class="topHeader"><div class="container full"><div class="headerContent"><a class="logo" href="/web/20220822232740/https://www.lexico.com/" data-linkid="n2d5nl"><img src="/web/20220822232740im_/https://www.lexico.com/assets/oup/logos/svg/lexico-logo-new-b9f707cb98e4c645833379725ea1e859c34b4668104de80dbafdf872cabaccb4.svg" alt="Lexico logo"/></a></div><nav class="nav main-nav"><ul><li><a class="active" data-behaviour="ga-event-menu" data-value="ENGLISH DICTIONARY" data-linkid="390jov" href="/web/20220822232740/https://www.lexico.com/">ENGLISH DICTIONARY</a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="SYNONYMS" data-linkid="ith4na" href="/web/20220822232740/https://www.lexico.com/synonyms">SYNONYMS</a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="TRANSLATE" data-linkid="tf44eh" href="/web/20220822232740/https://www.lexico.com/translate">TRANSLATE</a></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar">GRAMMAR </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - GRAMMAR A-Z " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/grammar-a-z">GRAMMAR A-Z </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - SPELLING " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/spelling">SPELLING </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - PUNCTUATION " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/punctuation">PUNCTUATION </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - WRITING TIPS " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/writing-help">WRITING TIPS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - USAGE " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/usage">USAGE </a></li></ul></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore">EXPLORE </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD ORIGINS " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/word-origins">WORD ORIGINS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - LANGUAGE QUESTIONS " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/language-questions">LANGUAGE QUESTIONS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD LISTS" data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/word-lists">WORD LISTS</a></li></ul></li><li class="mob"><a class="not-active" data-behaviour="ga-event-menu" data-value="SPANISH DICTIONARY" data-linkid="7spit2" href="/web/20220822232740/https://www.lexico.com/es">SPANISH DICTIONARY</a></li><li class="drop more"><span>More</span><ul><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar">GRAMMAR </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - GRAMMAR A-Z " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/grammar-a-z">GRAMMAR A-Z </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - SPELLING " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/spelling">SPELLING </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - PUNCTUATION " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/punctuation">PUNCTUATION </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - WRITING TIPS " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/writing-help">WRITING TIPS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - USAGE " data-linkid="igwn7ns" href="/web/20220822232740/https://www.lexico.com/grammar/usage">USAGE </a></li></ul></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore">EXPLORE </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD ORIGINS " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/word-origins">WORD ORIGINS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - LANGUAGE QUESTIONS " data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/language-questions">LANGUAGE QUESTIONS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD LISTS" data-linkid="ua1ogw" href="/web/20220822232740/https://www.lexico.com/explore/word-lists">WORD LISTS</a></li></ul></li><li class="mob"><a class="not-active" data-behaviour="ga-event-menu" data-value="SPANISH DICTIONARY" data-linkid="7spit2" href="/web/20220822232740/https://www.lexico.com/es">SPANISH DICTIONARY</a></li></ul></li></ul></nav><nav class="nav right" lang="en"><ul><li class="drop"><span>Site language</span><ul class="language_selector"><li><a rel="nofollow" data-locale="en" data-linkid="66ofo9" href="/web/20220822232740/https://www.lexico.com/">English</a></li><li><a rel="nofollow" data-locale="es" data-linkid="y2mwjd" href="/web/20220822232740/https://www.lexico.com/">español</a></li></ul></li></ul></nav></div><span class="close"><svg enable-background="new -33 14 19.1 19.1" height="19" viewbox="-33 14 19.1 19.1" width="19" xmlns="http://www.w3.org/2000/svg"><path d="m-13.9 16.1l-2.1-2.1-7.4 7.4-7.5-7.4-2.1 2.1 7.4 7.5-7.4 7.4 2.1 2.1 7.5-7.4 7.4 7.4 2.1-2.1-7.4-7.4z" fill="#fff"/></svg></span></div><div class="mainHeader"><div class="container"><div class="headerContent"><a class="logo" href="/web/20220822232740/https://www.lexico.com/" data-behaviour="ga-event" data-value="Homepage anchor image" data-linkid="n2d5nl"><img src="/web/20220822232740im_/https://www.lexico.com/assets/oup/logos/svg/lexico-logo-new-b9f707cb98e4c645833379725ea1e859c34b4668104de80dbafdf872cabaccb4.svg" alt="Lexico logo"/></a><div class="searchField"><h1>Oxford English and Spanish Dictionary, Synonyms, and Spanish to English Translator</h1><div class="beforeSearch"></div><div class="searchMain" data-locale="en" data-english-homepage="true" data-translate-homepage="false"><form class="search" data-controller="search-default" action="/web/20220822232740/https://www.lexico.com/search" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="✓"/><select name="filter" id="filter" class="dictionary" data-search-default-target="select" data-ga-language-indicator="EN"><option value="en_dictionary">UK Dictionary</option> <option value="noad">US Dictionary</option> <option value="thesaurus">Synonyms</option> <option value="en_grammar">English Grammar</option> <option value="es_dictionary">Spanish</option> <option value="to_english">Spanish - English</option> <option value="from_english">English - Spanish</option> <option value="es_grammar">Spanish Grammar</option></select><fieldset><input type="hidden" name="dictionary" id="dictionary" value="en"/><input type="hidden" name="s" id="s" value="t"/><label class="sr-only" for="query">Search</label><input type="text" name="query" id="query" placeholder="Type word or phrase" autocomplete="off" maxlength="100" autocapitalize="none" class="autocomplete"/><div class="keyboard kBoxContent" data-behaviour="ga-event-search-scope" data-value="character keyboard"><svg enable-background="new 0 0 28 16.7" height="17" viewbox="0 0 28 16.7" width="28" xmlns="http://www.w3.org/2000/svg"><path d="m26.5 0h-25c-.8 0-1.5.6-1.5 1.4v13.9c0 .8.7 1.4 1.5 1.4h25.1c.8 0 1.5-.6 1.5-1.4v-13.9c-.1-.8-.8-1.4-1.6-1.4m-10.1 2.8h2.9v2.8h-2.9v-2.8m4.3 4.1v2.8h-2.9v-2.8h2.9m-8.7-4.1h2.9v2.8h-2.9v-2.8m4.4 4.1v2.8h-2.9v-2.8h2.9m-8.8-4.1h2.9v2.8h-2.9v-2.8m4.4 4.1v2.8h-2.9v-2.8h2.9m-9-4.1h3.2v2.8h-3.2v-2.8m0 4.1h4.6v2.8h-4.6v-2.8m3.2 7h-3.2v-2.8h3.1v2.8zm13.1 0h-11.7v-2.8h11.6v2.8zm5.8 0h-4.4v-2.8h4.4v2.8m0-4.2h-2.9v-2.8h2.9v2.8m0-4.1h-4.4v-2.8h4.4v2.8" fill="#999"/></svg> <svg enable-background="new 0 0 14 7" height="7" viewbox="0 0 14 7" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 4.4 2.6 0 0 0 6.1 6.1 7 7 7.9 6.1 14 0 11.4 0z" fill="#989898"/></svg></div><button type="submit" data-behaviour="ga-event-search-scope" data-value="Launch search" aria-label="Launch search" data-linkid="w4gmp9"><svg enable-background="new 0 0 22 22" height="30" viewbox="-0.5 -0.5 22 22" width="30" xmlns="http://www.w3.org/2000/svg"><path d="m21.8 19.6l-4.5-4.5c2.7-3.7 2.3-8.9-1-12.3-3.7-3.7-9.8-3.7-13.5 0-3.7 3.7-3.7 9.7 0 13.5 3.4 3.4 8.6 3.7 12.3 1l4.5 4.5c.4.4 1 .3 1.5-.2l.5-.5c.5-.5.5-1.1.2-1.5m-7.6-5.3c-2.6 2.6-6.8 2.6-9.4 0-2.6-2.6-2.6-6.8 0-9.4 2.6-2.6 6.8-2.6 9.4 0 2.5 2.6 2.5 6.8 0 9.4" fill="#f77941"/></svg></button><div class="autocompleteBox"></div><div class="keyboardBox"><div class="kBoxContent"><ul><li><span>à</span></li><li><span>á</span></li><li><span>â</span></li><li><span>ä</span></li><li><span>ã</span></li><li><span>ă</span></li><li><span>ā</span></li><li><span>ç</span></li><li><span>č</span></li><li><span>è</span></li><li><span>é</span></li><li><span>ê</span></li><li><span>ë</span></li><li><span>ē</span></li><li><span>ģ</span></li><li><span>ì</span></li><li><span>í</span></li><li><span>î</span></li><li><span>ï</span></li><li><span>ī</span></li><li><span>ķ</span></li><li><span>ļ</span></li><li><span>ñ</span></li><li><span>ň</span></li><li><span>ņ</span></li><li><span>ò</span></li><li><span>ó</span></li><li><span>ô</span></li><li><span>ö</span></li><li><span>õ</span></li><li><span>ş</span></li><li><span>š</span></li><li><span>ţ</span></li><li><span>ù</span></li><li><span>ú</span></li><li><span>û</span></li><li><span>ü</span></li><li><span>ū</span></li><li><span>ý</span></li><li><span>ž</span></li><li><span>æ</span></li><li><span>œ</span></li><li><span>ß</span></li></ul><i class="upper"><svg enable-background="new 0 0 16.8 16" height="16" viewbox="0 0 16.8 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="m8.4 0l-8.4 8.4h5.1v7.6h6.6v-7.6h5.1z" fill="#2a2a2a"/></svg></i></div></div></fieldset></form></div></div></div><div class="burger"><img src="/web/20220822232740im_/https://www.lexico.com/assets/oup/svg/hamburger-menu-594799c23e03196ed910c5798976a15b1779b55f9c9824608c69cf0ff6191ee8.svg" height="18" width="28" alt="menu"/><span>menu</span></div></div></div></header><div id="main"><div class="errors__container headerHead"></div><div id="content"><div class="closing-down-notice"><div><svg width="47" height="45" viewbox="0 0 47 45" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M46.0248 22.5007L40.9415 16.709L41.6498 9.04232L34.129 7.33398L30.1915 0.708984L23.1082 3.75065L16.0248 0.708984L12.0873 7.33398L4.5665 9.02148L5.27483 16.6882L0.191498 22.5007L5.27483 28.2923L4.5665 35.9798L12.0873 37.6881L16.0248 44.3131L23.1082 41.2506L30.1915 44.2923L34.129 37.6673L41.6498 35.959L40.9415 28.2923L46.0248 22.5007ZM25.1915 32.9173H21.0248V28.7507H25.1915V32.9173ZM25.1915 24.584H21.0248V12.084H25.1915V24.584Z" fill="#00248B"></path></svg><h3>Lexico.com Will Be Closing August 26</h3><span class="close-notice" id="closing-button"><svg width="18" height="17" viewbox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.0252 8.50065L17.1753 2.35047C17.2391 2.28667 17.2749 2.20018 17.2749 2.11C17.2749 2.01982 17.2391 1.93333 17.1753 1.86953L15.7393 0.433503C15.6755 0.369778 15.589 0.333984 15.4988 0.333984C15.4087 0.333984 15.3222 0.369778 15.2584 0.433503L9.10819 6.58368L2.95802 0.433503C2.89421 0.369778 2.80772 0.333984 2.71754 0.333984C2.62737 0.333984 2.54088 0.369778 2.47707 0.433503L1.04105 1.86953C0.977322 1.93333 0.941528 2.01982 0.941528 2.11C0.941528 2.20018 0.977322 2.28667 1.04105 2.35047L7.19123 8.50065L1.04105 14.6508C0.977322 14.7146 0.941528 14.8011 0.941528 14.8913C0.941528 14.9815 0.977322 15.068 1.04105 15.1318L2.47707 16.5678C2.54088 16.6315 2.62737 16.6673 2.71754 16.6673C2.80772 16.6673 2.89421 16.6315 2.95802 16.5678L9.10819 10.4176L15.2584 16.5678C15.3222 16.6315 15.4087 16.6673 15.4988 16.6673C15.589 16.6673 15.6755 16.6315 15.7393 16.5678L17.1753 15.1318C17.2391 15.068 17.2749 14.9815 17.2749 14.8913C17.2749 14.8011 17.2391 14.7146 17.1753 14.6508L11.0252 8.50065Z" fill="#1A1A1A"></path></svg></span></div><p>Thank you for visiting Lexico.com, but we do have some important news. <b> Starting August 26, we will be closing the Lexico.com website and redirecting it to <a href="https://web.archive.org/web/20220822232740/https://www.dictionary.com/">Dictionary.com</a> </b></p><p>Don’t fear! Dictionary.com has all the 1) definitions, 2) synonyms, and 3) grammar and writing tips you need—and a whole lot more!</p><p>Learn, discover, and have fun with a limitless world of content, including:</p><ul><li>Word origins</li><li>Antonyms</li><li>Word games</li><li>Slang & emoji</li><li>Quizzes, flashcards, and word lists</li><li>Plus, you can get all of this on the Dictionary.com app!</li></ul><p>Now, if you’re looking for the Spanish-related definitions and translations that you’ve relied on Lexico for, visit the Spanish-language dictionary offered by the <a href="https://web.archive.org/web/20220822232740/https://www.rae.es/">Real Academia Española</a> or the English–Spanish and Spanish–English dictionaries at <a href="https://web.archive.org/web/20220822232740/https://www.spanishdict.com/">SpanishDict.com</a>.</p><div class="dictionary-logo"><svg class="dict-logo" width="34" height="36" viewbox="0 0 34 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.4997 0.628634L0.555061 0.500063C0.49734 0.49909 0.439992 0.509436 0.386292 0.53051C0.332593 0.551584 0.283593 0.582974 0.242092 0.622885C0.200591 0.662797 0.167402 0.71045 0.144421 0.763121C0.12144 0.815792 0.109116 0.87245 0.108154 0.929859V28.3743C0.109994 28.4579 0.133372 28.5397 0.176053 28.6117C0.218734 28.6837 0.279288 28.7437 0.351922 28.7858L12.2965 35.7103C12.3857 35.7627 12.4921 35.7778 12.5925 35.7524C12.6929 35.7269 12.779 35.6629 12.8321 35.5743C12.8684 35.5132 12.8875 35.4434 12.8875 35.3723V9.72047C12.8874 9.63229 12.8633 9.54578 12.8178 9.47012C12.7723 9.39445 12.707 9.33244 12.6289 9.29068L6.28729 5.82659C6.23277 5.79857 6.19025 5.75192 6.16754 5.69522C6.14482 5.63851 6.14345 5.57556 6.16366 5.51793C6.18388 5.4603 6.22432 5.41186 6.27757 5.38151C6.33081 5.35115 6.39328 5.34093 6.45349 5.35272L17.9216 7.31068C18.0256 7.33036 18.1194 7.38555 18.1869 7.4667C18.2543 7.54786 18.2911 7.64988 18.291 7.75517V30.8503C18.291 30.9701 18.3388 31.085 18.424 31.1698C18.5092 31.2545 18.6248 31.3021 18.7453 31.3021H18.797C27.2919 30.3543 33.0795 24.407 33.2014 16.1564C33.3159 6.92863 26.4498 0.757206 16.4997 0.628634Z" fill="#00248B"></path></svg><svg class="dict-word" width="221" height="31" viewbox="0 0 221 31" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.4341 13.8103C19.4341 7.48091 14.736 3.22704 7.74434 3.22704H0.774811V24.5332H7.74434C14.6252 24.5148 19.4341 20.1103 19.4341 13.8103ZM4.98903 20.7458V6.99234H7.72218C12.2725 6.99234 15.1091 9.6005 15.1091 13.803C15.1091 18.0054 12.1543 20.7458 7.72218 20.7458H4.98903ZM44.7563 12.4401L41.8348 14.6993C40.7563 13.1307 39.508 12.3997 37.9124 12.3997C35.3861 12.3997 33.5541 14.2915 33.5541 16.896C33.5541 19.5005 35.4009 21.4291 37.9124 21.4291C39.4599 21.4291 40.7046 20.6944 41.8348 19.1589L44.7563 21.3887C43.3491 23.8536 40.8376 25.2642 37.8496 25.2642C33.0481 25.2642 29.2734 21.5907 29.2734 16.896C29.2734 12.2013 33.0407 8.59397 37.8496 8.59397C40.8487 8.59397 43.3639 9.99357 44.7563 12.4401ZM60.6381 2.60255C60.6374 2.11867 60.781 1.64544 61.0507 1.24271C61.3203 0.839978 61.704 0.525826 62.1532 0.339984C62.6024 0.154141 63.0969 0.104953 63.5742 0.19864C64.0516 0.292328 64.4902 0.524682 64.8347 0.866322C65.1793 1.20796 65.4142 1.64354 65.5098 2.11798C65.6055 2.59242 65.5575 3.0844 65.372 3.53173C65.1865 3.97905 64.8718 4.36161 64.4677 4.63105C64.0636 4.90048 63.5882 5.04468 63.1017 5.0454C62.7786 5.04685 62.4585 4.98501 62.1595 4.8634C61.8605 4.74178 61.5885 4.56279 61.3591 4.33663C61.1296 4.11047 60.9472 3.84158 60.8222 3.5453C60.6973 3.24903 60.6322 2.93118 60.6308 2.60989L60.6381 2.60255ZM65.2254 24.5148H60.9964V8.59397H65.2106L65.2254 24.5148ZM26.4738 24.5148H22.2448V8.58295H26.459L26.4738 24.5148ZM21.8939 2.60622C21.8939 2.12187 22.0385 1.64843 22.3093 1.24586C22.58 0.843296 22.9649 0.529729 23.415 0.344885C23.8651 0.160041 24.3603 0.112239 24.8377 0.207536C25.3152 0.302833 25.7535 0.536939 26.097 0.880196C26.4406 1.22345 26.674 1.66041 26.7677 2.13572C26.8613 2.61102 26.811 3.10328 26.6232 3.55013C26.4353 3.99698 26.1183 4.3783 25.7123 4.6458C25.3063 4.9133 24.8297 5.05493 24.3427 5.05275C23.6903 5.05275 23.0646 4.79499 22.6033 4.33618C22.142 3.87736 21.8828 3.25508 21.8828 2.60622H21.8939ZM48.6234 18.9532V12.1058H46.2707V8.59765H48.6234V4.52377H52.8376V8.59765H57.4249V12.1058H52.8376V18.5601C52.8376 20.3968 53.772 21.1683 55.9549 21.1683C56.3944 21.1683 56.9743 21.1242 57.6428 21.0727L57.9493 21.047V24.5368C56.9834 24.7802 55.991 24.9036 54.9946 24.9042C50.8284 24.9042 48.6234 22.847 48.6234 18.9495V18.9532ZM76.6049 8.23397C71.8034 8.23397 68.0287 11.8781 68.0287 16.536C68.0287 21.194 71.7813 24.8711 76.5754 24.8711C81.3695 24.8711 85.218 21.1976 85.218 16.536C85.218 11.8744 81.4286 8.23397 76.6049 8.23397ZM76.6049 21.0323C74.1192 21.0323 72.3131 19.1552 72.3131 16.5691C72.3131 13.983 74.1192 12.036 76.6049 12.036C79.0906 12.036 80.893 13.994 80.893 16.5654C80.893 19.1368 79.0463 21.0323 76.6049 21.0323ZM184.668 8.21928C179.866 8.21928 176.092 11.867 176.092 16.5213C176.092 21.1756 179.837 24.8564 184.638 24.8564C189.44 24.8564 193.281 21.183 193.281 16.5213C193.281 11.8597 189.491 8.21928 184.664 8.21928H184.668ZM184.668 21.0213C182.178 21.0213 180.372 19.1442 180.372 16.5544C180.372 13.9646 182.178 12.0213 184.668 12.0213C187.157 12.0213 188.963 13.9719 188.963 16.5544C188.963 19.1368 187.116 21.0213 184.66 21.0213H184.668ZM92.1691 15.2025V24.5148H87.9512V8.59765H91.8071V10.2066L91.9844 10.0303C92.606 9.43898 93.3393 8.97609 94.1419 8.66839C94.9445 8.36069 95.8005 8.21429 96.6603 8.23765C100.298 8.23765 102.647 10.743 102.647 14.6185V24.5148H98.4627V15.2025C98.4627 13.274 97.2106 11.9772 95.3491 11.9772C93.4876 11.9772 92.1691 13.3034 92.1691 15.2025ZM122.315 24.5111V8.5903H118.459V10.8201L118.274 10.5666C117.166 9.0605 115.357 8.2303 113.148 8.2303C108.653 8.2303 105.392 11.7348 105.392 16.5654C105.392 21.396 108.653 24.9005 113.148 24.9005C115.297 24.9005 117.096 24.0923 118.208 22.6266L118.393 22.3842V24.5111H122.315ZM113.968 21.0985C111.478 21.0985 109.672 19.1919 109.672 16.5654C109.672 13.9389 111.478 12.003 113.968 12.003C116.055 12.003 118.164 13.4136 118.164 16.5654C118.164 19.7172 116.055 21.0985 113.968 21.0985ZM129.975 16.5654V24.5111H125.728V8.57561H129.606V10.7283L129.787 10.4895C130.3 9.82279 130.962 9.2848 131.722 8.91864C132.481 8.55248 133.316 8.36831 134.16 8.38091C134.613 8.37253 135.064 8.42944 135.501 8.54989V12.2491H134.407C131.586 12.2491 129.975 13.8103 129.975 16.5654ZM140.391 30.7634C139.464 30.7516 138.543 30.6282 137.646 30.396V26.9062L137.916 26.9283C138.5 26.9834 139.024 27.0274 139.441 27.0274C140.719 27.0274 142.027 26.7556 142.91 24.783L143.419 23.6809L137.222 8.60132H141.683L145.713 19.3683L150.012 8.60132H154.444L146.747 25.9842C145.244 29.316 143.342 30.7597 140.376 30.7597L140.391 30.7634ZM157.281 21.9801C157.289 22.3178 157.231 22.6538 157.108 22.969C156.986 23.2842 156.802 23.5723 156.568 23.8169C156.334 24.0615 156.053 24.2578 155.743 24.3945C155.432 24.5313 155.098 24.6059 154.758 24.614H154.662C153.96 24.614 153.286 24.3365 152.79 23.8425C152.293 23.3486 152.014 22.6786 152.014 21.9801C152.014 21.2815 152.293 20.6116 152.79 20.1177C153.286 19.6237 153.96 19.3462 154.662 19.3462C155.347 19.3413 156.005 19.6066 156.493 20.0838C156.981 20.561 157.259 21.2112 157.266 21.8919V21.9874L157.281 21.9801ZM174.415 12.0838L171.49 14.343C170.411 12.7744 169.163 12.0434 167.571 12.0434C165.063 12.0434 163.216 13.9352 163.216 16.5397C163.216 19.1442 165.063 21.0727 167.578 21.0727C169.122 21.0727 170.37 20.3381 171.497 18.8025L174.422 21.0323C173.011 23.4972 170.5 24.9078 167.512 24.9078C162.71 24.9078 158.935 21.2344 158.935 16.5397C158.935 11.845 162.703 8.23765 167.512 8.23765C170.511 8.23765 173.011 9.62622 174.422 12.0691L174.415 12.0838ZM210.551 15.1401V24.5185H206.333V15.2246C206.333 13.263 205.163 11.9956 203.349 11.9956C201.536 11.9956 200.265 13.2923 200.265 15.2246V24.5038H196.051V8.58295H199.907V10.1662L200.08 9.98622C200.671 9.40302 201.375 8.94582 202.149 8.64263C202.923 8.33943 203.751 8.19663 204.583 8.22295C206.681 8.22295 208.317 9.00908 209.31 10.4932L209.388 10.6034L209.473 10.5005C210.144 9.76277 210.967 9.17749 211.886 8.78448C212.805 8.39147 213.799 8.19995 214.799 8.22295C218.514 8.22295 220.823 10.6695 220.823 14.6038V24.5221H216.616V15.2246C216.616 13.263 215.445 11.9956 213.632 11.9956C211.818 11.9956 210.551 13.2813 210.551 15.1254V15.1401Z" fill="black"></path></svg></div></div><div class="greybox banbox mobile_banner"><div class="container"><aside class="banner adUnit"><div id="lexi_home_dkt_atf_728x90_1"></div><div id="lexi_home_mweb_atf_320x50_1"></div></aside></div></div><div class="violbox"><div class="container full"><div class="words layout"><div class="trend" lang="en"><section class="boxSizing"><h2><span class="trending trending-icon">Trending Words</span></h2><div class="popular"><p><span>Most popular in the world</span></p></div><ol class="words_section"><li><a data-behaviour="ga-event-trending-words" data-linkid="c5p9m2" data-value="word 1" href="/web/20220822232740/https://www.lexico.com/definition/clever%20Dick">clever Dick</a></li><li><a data-behaviour="ga-event-trending-words" data-linkid="c5p9m2" data-value="word 2" href="/web/20220822232740/https://www.lexico.com/definition/off%20the%20back%20of">off the back of</a></li><li><a data-behaviour="ga-event-trending-words" data-linkid="c5p9m2" data-value="word 3" href="/web/20220822232740/https://www.lexico.com/definition/affecting">affecting</a></li><li><a data-behaviour="ga-event-trending-words" data-linkid="c5p9m2" data-value="word 4" href="/web/20220822232740/https://www.lexico.com/definition/rahdari">rahdari</a></li><li><a data-behaviour="ga-event-trending-words" data-linkid="c5p9m2" data-value="word 5" href="/web/20220822232740/https://www.lexico.com/definition/luteofulvous">luteofulvous</a></li></ol></section></div><div class="dayword"><section><div class="daywordmain"><h2 class="boxSizing">Word of the day</h2><div class="word_spacer"></div><div><div><strong><a class="linkword" id="0b8c09bf-e1bc-437d-b39c-56869c76e299" href="/web/20220822232740/https://www.lexico.com/definition/kickshaw" data-behaviour="ga-event-wotd" data-linkid="nx1fkx" data-value="Word">kickshaw</a></strong><p class="word_type phonetic_spelling">/ ˈkɪkʃɔː /</p><p class="word_type pos">noun</p></div></div><div class="cta"><a id="0b8c09bf-e1bc-437d-b39c-56869c76e299" href="/web/20220822232740/https://www.lexico.com/definition/kickshaw" data-linkid="3s1dgz" data-behaviour="ga-event-wotd" data-value="Word">See definitions & examples</a></div></div></section></div><div class="mini-news"><div><a href="/web/20220822232740/https://www.lexico.com/es/grammar/encanto-meaning" data-behaviour="ga-event" data-value="Region 1 - top image" data-linkid="sa9ed6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://lexico.useremarkable.com/production/images/uploads/7006/medium/GettyImages-95580173.jpg"/></div><article><h2>FIND OUT</h2><h3>What Does the Word 'Encanto' Mean?</h3></article></a></div><div><a href="/web/20220822232740/https://www.lexico.com/es/grammar/spanish-grammar-notes-for-english-speakers-translating-into-spanish-14-presentperfectpast-in-spanish" data-behaviour="ga-event" data-value="Region 1 - middle image" data-linkid="sa9ed6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7263/medium/standard-english.jpg"/></div><article><h2>READ MORE</h2><h3>Present, Perfect, Past In Spanish</h3></article></a></div><div><a href="/web/20220822232740/https://www.lexico.com/es/grammar/spanish-expressions" data-behaviour="ga-event" data-value="Region 1 - bottom image" data-linkid="sa9ed6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7275/medium/what-is-a-dialect.jpg"/></div><article><h2>Spanish Phrases</h2><h3>Try Out These Useful Spanish Expressions</h3></article></a></div></div></div></div></div><div><div class="container full"><div class="news layout"><section class="mainNews"><a href="https://web.archive.org/web/20220822232740/https://www.lexico.com/es/grammar/varieties-of-present-day-spanish" data-behaviour="ga-event" data-value="Region 1 - lead image" data-linkid="sa9ed6"><div class="box-img tablet-short" data-ratiox="2.35" data-ratioy="1"><img src="https://web.archive.org/web/20220822232740im_/https://lexico.useremarkable.com/production/images/uploads/7291/original/what-is-origin-of-word-world.jpg"/></div><h3>How Does Spanish Vary Around The World?</h3></a></section><aside class="banbox-mini"><div class="banner adUnit"><div id="lexi_home_dkt_btf_300x250_10"></div><div id=""></div></div></aside></div></div></div><div><div class="container full"><h2 class="title"><span>Explore Grammar Content From Oxford Dictionary</span></h2><div class="posts layout"><section class="mainPost"><a href="/web/20220822232740/https://www.lexico.com/explore/what-is-the-longest-english-word" data-behaviour="ga-event" data-value="Region 3 - Primary story" data-linkid="c4yzi4"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7314/original/literary-words-you%27ll-want-to-know-min.jpg" loading="lazy" class="lazy"></div><article><h3 class="inset"><span>LANGUAGE QUESTIONS</span></h3><h4 class="tagline">What Is The Longest English Word?</h4><p></p></article></a></section><section><a href="/web/20220822232740/https://www.lexico.com/explore/how-many-words-begin-with-x" data-behaviour="ga-event" data-value="Region 3 - Story 2" data-linkid="c4yzi4"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7135/medium/words-beginning-with-x.jpg" loading="lazy" class="lazy"></div><article><h2 class="inset"><span>Language Questions</span></h2><h3 class="tagline">How Many Words Begin With The Letter 'X'?</h3></article></a></section><section><a href="https://web.archive.org/web/20220822232740/https://www.lexico.com/explore/shall-or-will" data-behaviour="ga-event" data-value="Region 3 - Story 3" data-linkid="c4yzi4"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7261/medium/shall-or-will.jpg" loading="lazy" class="lazy"></div><article><h2 class="inset"><span>Confused Words</span></h2><h3 class="tagline">When To Use The Words 'Shall' and 'Will'</h3></article></a></section><section><a href="/web/20220822232740/https://www.lexico.com/explore/what-is-the-origin-of-the-word-ok" data-behaviour="ga-event" data-value="Region 3 - Story 4" data-linkid="c4yzi4"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7284/medium/what-is-origin-of-word-ok.jpg" loading="lazy" class="lazy"></div><article><h2 class="inset"><span>Word Origins</span></h2><h3 class="tagline">What Is The Origin Of The Word 'Ok'?</h3></article></a></section><section><a href="/web/20220822232740/https://www.lexico.com/explore/foreign-words-and-phrases" data-behaviour="ga-event" data-value="Region 3 - Story 5" data-linkid="c4yzi4"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7131/medium/foreign-words-and-phrases-now-used-in-english.jpg" loading="lazy" class="lazy"></div><article><h2 class="inset"><span>WORD LISTS</span></h2><h3 class="tagline">Foreign Words And Phrases Now Used In English</h3></article></a></section></div></div></div><div class="violbox h-box" id="grammar_section"><div class="container full"><h2 class="title"><span>Quizzes & Games</span></h2><div class="new-quizzes layout"><div class="new-quiz" data-controller="quiz-loader" data-quiz-loader-choices-value="[120,121,122,119,117,115,113,118,116,114,112,111,110]" data-quiz-loader-language-value="Spanish"></div><div class="new-quiz" data-controller="quiz-loader" data-quiz-loader-choices-value="[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109]" data-quiz-loader-language-value="English"></div><aside class="banbox-mini"><div class="banner adUnit"><div id="lexi_home_dkt_atf_300x250_20"></div><div id=""></div></div></aside></div></div></div><div class="faces"><div class="faces-pic"></div><div><div class="halfcontainer"><section><h2>Hola Hispanohablantes!</h2><p>Explore our Spanish Dictionary and Translation Tools for Spanish to English and English to Spanish</p><a href="/web/20220822232740/https://www.lexico.com/es" data-behaviour="ga-event" data-value="Region community link" data-linkid="03yheo">Find Out More</a></section></div></div></div><div class="violbox"><div class="container full"><div class="quotes layout"><div class="quote"><div class="quotewrap boxSizing"><i><svg enable-background="new 0 0 21.4 13" height="16" viewbox="0 0 21.4 13" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M4.2,0h5.5L8.3,13H0L4.2,0z M15.9,0h5.5L20,13h-8.3L15.9,0z" fill="#006059"/></svg></i><h3>Spanish Quote Of The Month </h3><div class="quotemain"><p>“Todos nuestros sueños se pueden hacer realidad si tenemos el coraje de perseguirlos.”</p></div><span class="auth">Walt Disney</span></div></div><div class="blogbox"><section><a href="/web/20220822232740/https://www.lexico.com/es/grammar/spanish-expressions" data-behaviour="ga-event" data-value="Region 7 - story 1" data-linkid="03yheo"><div class="box-img mobile-short" data-ratiox="2.35" data-ratioy="1"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7147/original/effective-spanish.jpg" loading="lazy" class="lazy"></div><article><h2>EXPLORING SPANISH</h2><h3>Try These Useful Spanish Expressions In Your Next Conversation</h3></article></a></section></div></div></div></div><div class="h-box"><div class="container full"><h2 class="title"><span>Grammar Help from Oxford Dictionary</span></h2><div class="videos"><ul><li><a href="/web/20220822232740/https://www.lexico.com/grammar/key-to-pronunciation" data-behaviour="ga-event" data-value="Region 8 - story 1" data-linkid="6m91yx"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7235/medium/how-to-use-word-like.jpg" loading="lazy" class="lazy"></div><h3>Learn How To Pronounce These English Words Correctly</h3></a></li><li><a href="/web/20220822232740/https://www.lexico.com/grammar/compare-with-or-compare-to" data-behaviour="ga-event" data-value="Region 8 - story 2" data-linkid="6m91yx"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7207/medium/compare-with-or-compare-to.jpg" loading="lazy" class="lazy"></div><h3>Which Is Correct: 'Compare With" Or "Compare To"?</h3></a></li><li><a href="/web/20220822232740/https://www.lexico.com/grammar/common-misspellings" data-behaviour="ga-event" data-value="Region 8 - story 3" data-linkid="6m91yx"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7250/medium/most-common-misspellings.jpg" loading="lazy" class="lazy"></div><h3>Have You Ever Spelled These Words Incorrectly?</h3></a></li><li><a href="/web/20220822232740/https://www.lexico.com/grammar/learnt-vs-learned" data-behaviour="ga-event" data-value="Region 8 - story 4" data-linkid="6m91yx"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20220822232740im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7245/medium/learnt-or-learned.jpg" loading="lazy" class="lazy"></div><h3>Learnt' vs. 'Learned': Is There A Difference?</h3></a></li></ul></div></div></div></div></div><a id="feedbackTab" title="Tell us your opinion!" href="https://web.archive.org/web/20220822232740/https://www.surveymonkey.com/r/D293BWP" target="_blank" rel="noopener">Feedback</a><footer id="footer"><div class="container"><div class="footerWrap"><div class="footer-sitemap"><ul id="footer-horizontal-list"><span class="sitemap-title">Browse The English Dictionary: </span><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/0">#</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/a">a</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/b">b</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/c">c</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/d">d</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/e">e</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/f">f</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/g">g</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/h">h</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/i">i</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/j">j</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/k">k</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/l">l</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/m">m</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/n">n</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/o">o</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/p">p</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/q">q</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/r">r</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/s">s</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/t">t</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/u">u</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/v">v</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/w">w</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/x">x</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/y">y</a></li><li><a data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/list/z">z</a></li></ul></div><div class="footerNav" lang="en"><nav class="inlineBlock"><p>Find out More</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="About" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/about">About</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Contact Us" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/contact-us">Contact Us</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Privacy Policy" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/cookies-terms-privacy">Privacy Policy</a></li><li><button name="button" type="submit" class="ot-sdk-show-settings">Do Not Sell My Info</button></li></ul></nav><nav class="inlineBlock"><p>Dictionary & Synonyms</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="UK English Dictionary" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/uk-english">UK English Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="US English Dictionary" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/us-english">US English Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Spanish Dictionary" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/es/spanish">Spanish Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="English Synonyms" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/english-synonyms">English Synonyms</a></li></ul></nav><nav class="inlineBlock"><p>Translations</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="Spanish to English" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/es/spanish-english?search_filter=to_english">Spanish to English</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="English to Spanish" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/es/english-spanish?search_filter=from_english">English to Spanish</a></li></ul></nav><nav class="inlineBlock"><p>Explore</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="Articles" data-linkid="gy27eg" href="/web/20220822232740/https://www.lexico.com/explore">Articles</a></li></ul></nav></div><p class="copyright">© 2022 Lexico.com</p></div></div></footer></div><div id="autocompleteWrap"></div><script type="text/javascript" src="https://web.archive.org/web/20220822232740js_/https://www.lexico.com/user-data-context/v1"></script><script>var site = "lexi"; var page = "HP"; var pageTargeting = { loc: userDataContext.regionCode, tx1: "homepage", tx2: "homepage", ptype: "homepage", ld: "1" }; // slotConfigs, lazySlotConfigs var adTemplate = "home_page"; var leftSkySize = [300, 600] if (window.innerWidth < 1503) { leftSkySize = [160, 600] // The wide skycraper won't fit } var mobileAdConfigurations = { "home_page": { "on_load": [{ "ad_uuid": "lexi_home_mweb_atf_320x50_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[320, 50]], "code": "/23219321/lexico_mobile/lexi_en_home", "placement": "lexi_home_mweb_atf_320x50_1" }], "lazy": [] }, "content_page": { "on_load": [{ "ad_uuid": "lexi_serp_mweb_atf_320x50_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[320, 50]], "code": "/23219321/lexico_mobile", "placement": "lexi_serp_mweb_atf_320x50_1" }], "lazy": [] } } var desktopAdConfigurations = { "home_page": { "on_load": [{ "ad_uuid": "lexi_home_dkt_atf_728x90_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[728, 90], [970, 90], [970, 250]], "code": "/23219321/lexico/lexico_home", "placement": "lexi_home_dkt_atf_728x90_1" }, { "ad_uuid": "lexi_home_dkt_btf_300x250_10", "targeting": { "pos2": "10", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_home_dkt_btf_300x250_10" }], "lazy": [ { "ad_uuid": "lexi_home_dkt_atf_300x250_20", "targeting": { "pos2": "20", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_home_dkt_atf_300x250_20" }] }, "content_page": { "on_load": [{ "ad_uuid": "lexi_serp_dkt_atf_728x90_10", "targeting": { "pos2": "10", "pos": "top" }, "sizes": [[728, 90]], "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_atf_728x90_10" }, { "ad_uuid": "lexi_serp_dkt_atf_160x600_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [leftSkySize], // [300, 600] or [160, 600] "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_atf_160x600_1" }, { "ad_uuid": "lexi_serp_dkt_btf_300x250_20", "targeting": { "pos2": "20", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_btf_300x250_20" }], "lazy": [{ "ad_uuid": "lexi_serp_dkt_atf_300x250_30", "targeting": { "pos2": "30", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_serp_dkt_atf_300x250_30" }] } } if (userDataContext.deviceType === "Mobile") { var slotConfigs = mobileAdConfigurations[adTemplate]['on_load']; var lazySlotConfigs = mobileAdConfigurations[adTemplate]['lazy']; } else { // If detectedDevice is "Tablet" or "Desktop" var slotConfigs = desktopAdConfigurations[adTemplate]['on_load']; var lazySlotConfigs = desktopAdConfigurations[adTemplate]['lazy']; } var oneTrustUrl = "https://web.archive.org/web/20220822232740/https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"; var oneTrustDataDomainScriptId = "102ab651-9f24-4508-8f31-aed4a903e146"; var nonEuPubmaticProfileId = 1483; var euPubmaticProfileId = 1484; var categoryId = null; var testAdParam = {}; var adRefreshPeriodInSeconds = 60; var adRefreshMaximumRefreshes = 4; var adRefreshViewableOnly = false; </script><!-- OneTrust Cookies Consent Notice start --><script type="text/javascript">function OptanonWrapper(){ determineConsent(); }</script><!-- OneTrust Cookies Consent Notice end --><script type="text/javascript" src="https://web.archive.org/web/20220822232740js_/https://www.lexico.com/adscripts/11.1.1/adscripts.js"></script><script async src="https://web.archive.org/web/20220822232740js_/https://securepubads.g.doubleclick.net/tag/js/gpt.js" onload="gptOnLoad()"></script><script type="text/javascript">loadPubmatic(nonEuPubmaticProfileId, euPubmaticProfileId, undefined, undefined, true);</script><script type="text/javascript">getA9("apstag", window, document, "script", "https://web.archive.org/web/20220822232740/https://c.amazon-adsystem.com/aax2/apstag.js", undefined, undefined, true);</script><script>var hasLazyLoaded = false; function handler(entries, observer) { for (var i = 0; i < entries.length; i++) { var entry = entries[i]; if (entry.isIntersecting && !hasLazyLoaded) { hasLazyLoaded = true; requestLazyAd(new CustomEvent('requestLazyAd', { detail: lazySlotConfigs[0].placement })); } } } setTimeout(function(){ var observer = new IntersectionObserver(handler); var hp_grammar = document.getElementById("grammar_section"); if ( hp_grammar ) { observer.observe(hp_grammar); } var further_reading = document.getElementById("further_reading_section"); if ( further_reading ) { observer.observe(further_reading); } }, 3000); window.loadAds && window.loadAds(); </script><script>$('ul.language_selector > li').click(function(event) { var locale = $(event.currentTarget).children('a').data('locale'); Cookies.set('locale', locale); location.reload(); return false; })</script><script>$(document).ready(function () { App.initCore(); App.initOdoPage(); App.initAutocompleteSearch(); App.autoHighlightSearchTerm(); App.showMobileSelector(); $('body').resize(); App.trendingWords(); App.track(); }); registerListener('load', setLazy); registerListener('load', lazyLoad); registerListener('scroll', lazyLoad); var lazy = []; function setLazy(){ lazy = document.getElementsByClassName('lazy'); } function lazyLoad(){ for(var i=0; i<lazy.length; i++){ if(isInViewport(lazy[i])){ if (lazy[i].getAttribute('data-src')){ lazy[i].src = lazy[i].getAttribute('data-src'); lazy[i].removeAttribute('data-src'); } } } cleanLazy(); } function cleanLazy(){ lazy = Array.prototype.filter.call(lazy, function(l){ return l.getAttribute('data-src');}); } function isInViewport(el){ var rect = el.getBoundingClientRect(); return ( rect.bottom >= 0 && rect.right >= 0 && rect.top <= (window.innerHeight || document.documentElement.clientHeight) && rect.left <= (window.innerWidth || document.documentElement.clientWidth) ); } function registerListener(event, func) { if (window.addEventListener) { window.addEventListener(event, func) } else { window.attachEvent('on' + event, func) } } // Accessibility hack for selectbox, for Lighthouse purpose only window.addEventListener('load', function () { document.querySelector('.sbToggle').innerHTML = "<span class='sr-only'>dropdown toggle</a>"; })</script><div class="one-click-underline" data-word-highlight="true"></div><div id="track"></div></body></html><!-- FILE ARCHIVED ON 23:27:40 Aug 22, 2022 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 16:33:58 Mar 03, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.729 exclusion.robots: 0.037 exclusion.robots.policy: 0.022 esindex: 0.013 cdx.remote: 11.133 LoadShardBlock: 279.336 (6) PetaboxLoader3.datanode: 275.021 (7) load_resource: 95.683 PetaboxLoader3.resolve: 63.978 -->