I have a method like this in React:
save(){
let po=pd=idv=false;
//some logic to set po,pd, and idv true if meets a condition
}
Whenever this method is called, it always says "Uncaught ReferenceError : idv is undefined." What am I doing wrong?