mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
const BuildMaxVisitorsList = () =>
|
|
{
|
|
const list: number[] = [];
|
|
|
|
for(let i = 10; i <= 100; i = i + 10) list.push(i);
|
|
|
|
return list;
|
|
};
|
|
|
|
export const GetMaxVisitorsList = BuildMaxVisitorsList();
|