function Constr() {
this.my = this;
this.onStart = function () {
console.log('start');
};
this.func = function () {
navigator.getUserMedia({audio: true}, function (stream) {
this.onStart(); // Не работает
my.onStart() // Не работает
},
function (error) {
});
}
}
function Constr() {
this.onStart = function() {
console.log('start')
}
this.func = function() {
navigator.getUserMedia({ audio: true }, stream => {
this.onStart()
}, function(error) {
})
}
}