Replies: 1 comment
-
The function math.rationalize('(a+b)*(c+d)').toString() // "a * c + a * d + b * c + b * d" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a native, built-in way to turn
(a+b)(c+d)
intoac+bc+ad+bd
? Or do we have to manually define:Beta Was this translation helpful? Give feedback.
All reactions