Skip to content

Instantly share code, notes, and snippets.

@hamzakaya
Created October 28, 2021 06:43
Show Gist options
  • Save hamzakaya/faa943789d0d2b8473f866c5a84de384 to your computer and use it in GitHub Desktop.
Save hamzakaya/faa943789d0d2b8473f866c5a84de384 to your computer and use it in GitHub Desktop.
function limitArray(length: number): any[] {
const arr = new Array()
arr.push = function () {
if (this.length >= length) this.shift()
return Array.prototype.push.apply(this, arguments)
}
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment