Documentation for a historical release of Infusion: 1.4
Please view the Infusion Documentation site for the latest documentation, or the Infusion 1.3. Documentation for the previous release.
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