BEE = 20;
STACKMENOW = 10;
TYPE = 1; // (1 = ADDITION, 0 = SUBSTRACTION)
NEWVALUE = BEE (TYPE? + : - ) =STACKMENOW;
console.log(NEWVALUE); // This should be 30 if the TYPE is 1, and 10 if the type is 0, is this possible?
BEE = 20;
STACKMENOW = 10;
TYPE = 1; // (1 = AD