value = "+"
isNaN(value)
Condition is false
value > 0
condition is true
value ="200"
isNaN(value)
Condition is false
value > 0
condition is true
Here's the thing, in both the cases value > 0
shows true
, i want to differentiate things like +-/* with numbers 0,200,5 etc.
is it possible to do this in Javascript??