• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
JavaScriptSource

JavaScriptSource

Search 5,000+ Free JavaScript Snippets

  • Home
  • Browse Snippets
    • Addon
    • Ajax
    • Buttons
    • Cookies
    • CSS
    • Featured
    • Forms
    • Games
    • Generators
    • Image Effects
    • Math Related
    • Miscellaneous
    • Multimedia
    • Navigation
    • Page Details
    • Passwords
    • Text Effects
    • Time & Date
    • User Details
Home / Miscellaneous / Drop list elements from the left

Drop list elements from the left

Drop list elements from the left

Creates a new array with n elements removed from the left.

  • Use Array.prototype.slice() to remove the specified number of elements from the left.
  • Omit the last argument, n, to use a default value of 1.
const drop = (arr, n = 1) => arr.slice(n);

// EXAMPLES
drop([1, 2, 3]); // [2, 3]
drop([1, 2, 3], 2); // [3]
drop([1, 2, 3], 42); // []

Source

https://www.30secondsofcode.org/js/s/drop

Miscellaneous

Related Snippets:

  • How To Automatically Redirect To Another URL (JavaScript and jQuery)
  • Merge two or more arrays together
  • Check if the provided value is of the specified type
  • Find last n matches

Primary Sidebar

Popular Posts

Story Generator

IP Grabber – get a users IP address with JavaScript

Simple Calendar

Remove Ads

Astrological Calculator

Copyright © 2025 JavaScriptSource.com

  • About
  • Privacy Policy
  • FAQ
  • Jobs For Developers