I Want to access variable from doinit to saveexpenses method. I am trying to access temp variable in saveExpense. The console is throwing undefined
({
doInit: function(component, event, helper) {
helper.getMatrix(component, event);
helper.getRolesConverted(component, event);
var temp=0;
},
saveExpenses: function(component, event, helper) {
helper.saveExpenses(component, event);
console.log('temp value ',temp);
},
});