Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 ]