-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
estimate matching #1009
estimate matching #1009
Conversation
…ions F 988 estimate matching calculations
Will Merge it to upgrade the main branch of Mohammad this way we can unblock frontend in dev server |
Or we can make a method receiving multiples values and return them all at once. |
@CarlosQ96 Thanks for finishing this PR, but there is a point. My idea was to use |
What do you think @aminlatifi ? |
I think there is an easier way, but I didn't explain it here, sorry for that. const projectSquareRootSquared = Math.Power(projectSquareRoot,2);
const totalExceptProject = TotalSum -projectSquareRootSquared ;
const newProjectSquareRoot = projectSquareRoot + Math.sqrt(newDonationValue);
const newProjectSquareRootSquared = Math.power(newProjectSquareRoot, 2)
const newTotal = totalExceptProject + newProjectSquareRootSquared
.... |
Yeah thanks, I overlooked that way. I agree. |
#988