Parse
File Parse functions/range.js
This runs the server-side parser and regenerates the documentation tree for this source file.
Source
const range = function(count){
/* Return a list of integers to the max of the given `count`.
range(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
*/
return Array.from(Array(count).keys())
}
copy