+ 3
How can we make a calculator with the help of html ,CSS ,JavaScript ?
a simple way
9 Antworten
+ 13
+ 9
https://code.sololearn.com/WuoMERu5PPMB/?ref=app
+ 7
Check the code below:
https://code.sololearn.com/WzuoC4arMGdh/?ref=app
+ 5
https://code.sololearn.com/W0c94TBvV8aK/?ref=app
+ 4
Making calculator with the help of JavaScript is very easy
You can take guidance from this --
https://code.sololearn.com/W2J8H89mUb07/?ref=app
+ 4
Thanks to all of you
+ 3
Very good
+ 2
The simplest way is to use js eval function.
Assuming user entered some expression, then the answer will be
var res = eval(expression)
+ 2
yes