We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A log Node that can evaluate the log of an expression to any base. there would be a default base (2 or 10)
log(x [, base]) // where both `x` and `base` can be any valid expression already supported
A typical use case would be the following
let x = new Expression('2log(3, 10)') x.evaluate() // 0.954242509439...
the base can also be an expression
let y = new Expression('log(2, 3+2)') y.evaluate() // 0.43067655807...
No response
The text was updated successfully, but these errors were encountered:
Boss man, I'll love to help
Sorry, something went wrong.
sure, follow the contributing guide to get started. if anything is unclear, do feel free to reach out.
Can this issue be assigned to me??
I think we should hold off on this till #19 gets added since it directly relates to this feature.
No branches or pull requests
Description
A log Node that can evaluate the log of an expression to any base. there would be a default base (2 or 10)
Use Case
A typical use case would be the following
the base can also be an expression
Anything else?
No response
The text was updated successfully, but these errors were encountered: