Мне нужно передать значение переменной из класса компонента в функцию вне класса. Я не могу этого добиться. Ниже мой код, и при нажатии кнопки я получаю ошибку "не могу прочитать разделение собственности неопределенного ". Пожалуйста, помогите мне с решением.
App component.ts
import {Component NgZone} from 'angular2/core';
import {GameButtonsComponent} from './buttons/game-buttons.component';
@Component({
selector: 'my-app',
template: ' blblb'
})
export class AppComponent {
divide:number=5;
constructor(){}
ngOnInit(){}
calc()
}
function calc()
{
return 100/this.divide
}
html
<button (click)="calc()"></button>