Skip to content
Advertisement

Determining if both variables are True or False

I’m trying to make a function where two variables are in one if statement. followed by a(n) == True. It doesn’t work, but here’s what I tried in a better format.

JavaScript

but it returned this message:

JavaScript

Is there a way to make this function possible?

Advertisement

Answer

Keep in mind that you can take advantage var1 and var2 are booleans, so:

JavaScript

Alternative, you can use the all function

JavaScript

Note: you don’t need to check equality for True in a conditional, the point is to take advantage of that.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement