We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Pick an arbitrary infix.
Similar: randomInfix, infixes, hasInfix, searchInfix.
function randomInfix(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.randomInfix(x); // → [ 1, 2 ] xarray.randomInfix(x, 1); // → [ 2 ] xarray.randomInfix(x, 1); // → [ 3 ]
There was an error while loading. Please reload this page.