I am using javascript function to execute my string value, I have input like,
"0110 + 0123" = 155 ( I am getting )
But actually output was "233"
var total = "0110 + 0123";
total = ( new Function( 'return ' + memberData) )();
console.log(total);
How to hide or remove zero while calculating value.