Skip to content

Instantly share code, notes, and snippets.

@zainzafar90
Created October 21, 2018 07:55
Show Gist options
  • Save zainzafar90/d0ca320a8724a71c0fd80927502319d9 to your computer and use it in GitHub Desktop.
Save zainzafar90/d0ca320a8724a71c0fd80927502319d9 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
numbers: number[] = [];
constructor() {
for (let index = 0; index < 10000; index++) {
this.numbers.push(index);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment