Describe the difference of single =, vs double ==, and triple ===.
Sigiloso
This one is easy, single sets the variable, double and triple "check" the variable and return a "true" or "false" boolean based on the check. Difference between double == and triple === is that double == is not type sensitive, as triple === is type sensitive.