Skip to content

prefixes

wolfram77 edited this page Apr 11, 2020 · 19 revisions

Lists all possible prefixes. [:running:] [:package:] [:moon:]

array.prefixes(x, [n]);
// x: an array
// n: number of values (-1 => any)
// --> ...prefixes
const array = require('extra-array');

[...array.prefixes([1, 2])];
// [ [], [ 1 ], [ 1, 2 ] ]

[...array.prefixes([1, 2, 3])];
// [ [], [ 1 ], [ 1, 2 ], [ 1, 2, 3 ] ]

references

Clone this wiki locally