Menu

gitpiper

takeUntil javascript Code Snippet in 2024

arrayintermediate

Last Updated: 9 March 2024

Removes elements in an array until the passed function returns true. Returns the removed elements.

  • Loop through the array, using a for...of loop over Array.prototype.entries() until the returned value from the function is truthy.
  • Return the removed elements, using Array.prototype.slice().
  • The callback function, fn, accepts a single argument which is the value of the element.
const takeUntil = (arr, fn) => { for (const [i, val] of arr.entries()) if (fn(val)) return arr.slice(0, i); return arr; };
takeUntil([1, 2, 3, 4], n => n >= 3); // [1, 2]

javascript snippet similar to takeUntil For You in March 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️