Angular - Modules
Given this Angular module code, what will be the value of
AppModule.bootstrap.length?
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule],
bootstrap: [AppComponent]
})
export class AppModule {}