This documentation is currently being moved to our new documentation site.

Please view or edit the documentation there, instead.

If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.

fluid.iota

This functionality is Sneak Peek status. This means that the APIs may change. We welcome your feedback, ideas, and code, but please use caution if you use this new functionality.

fluid.iota(count, first)

Returns an array of size count, filled with increasing integers, starting at 0 or at the index specified by first.

fluid.iota(count, first);

File name: FileName.js

Parameters

count (integer) The desired number of entries in the array.
first (integer) (optional) The starting value for the array values; Will default to 0

Return Value

Array An array of the desired size.

See Also


Example