Previously (on my other blog), we looked atstring concatenation and I figured that this week, we could see what you could actually do with it. Back in 2014, I useda calculator to play around withPhoneGap. It might be time to play with the concept again.
In the above example, we have a value stored as “value” and as you click buttons on the calculator, it appends to the “value” string. The eventual evaluation of the string’s numerical value is done usingeval(). It is admittedly a much less than perfect calculator, though. Once you hit “=”, the whole thing kind of breaks down. Let’s try again.
This example still uses addExpresion(), clear(), and the computed value of displayValue but it is less dependent onslice() and hacky cheats.
So, can we simplify this a little? Sure!
You’ll notice that in the third iteration, I removed an unnecessary condition (that was looking for the clicking of an operator button).
Have a suggestion of how to improve it further? Feel free to drop a comment, below.
Top comments(0)
For further actions, you may consider blocking this person and/orreporting abuse