+ 10
Is it possible?
Can i make a condition in which it checks if the given var(data) is more than 18 and less than 24 in a single condition and returns the statement (eligible,you can fill the form)? How? https://code.sololearn.com/WGuvb13tqrCi/?ref=app
3 Answers
+ 7
by using AND operator (&&)
age > 18 && age < 24
+ 3
Gordon
It worked ,
I totally missed this point ,while working on it , though i have just learned itđđ
Thanks
+ 3
Yes