+ 1
What is the meaning of this. (?)
Please help explain to me the meaning of "?" in JavaScript and what it does and how and where I can make use of it...
2 ответов
+ 3
Are you asking about ? in this format
test ? true : false
if so it is the same as:
if test
then true
else false
except in proper javascript
+ 1
Yea in that format.. thanks.