We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Pick an arbitrary suffix.
Similar: randomSuffix, suffixes, hasSuffix.
function randomSuffix(x, n, fr) // x: an array // n: number of values [-1 ⇒ any] // fr: random number generator ([0, 1))
const xarray = require('extra-array'); var x = [1, 2, 3]; xarray.randomSuffix(x); // → [ 2, 3 ] xarray.randomSuffix(x, 1); // → [ 3 ] xarray.randomSuffix(x, -1); // → [ 2, 3 ]
There was an error while loading. Please reload this page.