MCPcopy Index your code
hub / github.com/AyushSaini00/60minuteJavaScript / arrayLowToHigh

Function arrayLowToHigh

Password-Generator/app.js:48–54  ·  view source on GitHub ↗
(low, high)

Source from the content-addressed store, hash-verified

46}
47
48function arrayLowToHigh(low, high){
49 let array = [];
50 for(let i = low; i <= high; i++){
51 array.push(i);
52 }
53 return array;
54}
55
56//Arrays storing all our characters
57const LOWERCASE_CHAR_CODES = arrayLowToHigh(97, 122);

Callers 1

app.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected