8 lines
63 B
TypeScript
8 lines
63 B
TypeScript
const Page = () => {
|
|
const a: number[] = []
|
|
a.fill(1)
|
|
|
|
|
|
}
|
|
|