I have set a value for this.username
previously, but it returns as undefined
when inside a function. How can I access its value?
Parse.User.logIn(this.username, this.password, {
success: function(user) {
// it returns as undefined
console.log('username is : ', this.username);
}});