After many tries didn't found a solution, so posting here.
Want to create a reverse polish notation by given numbers and operators.
Edit following example.
Example below:
Input Numbers = 5, 3, 6, 7
Operators= +, -, *, /
Output should be like 5 3 6 * + 5 3 / - 7 +
Looking for a workable solution in JavaScript