Techport Thirteen interview question

Can you explain the difference between = and ==?

Interview Answer

Anonymous

8 Jan 2015

= is an assignment operator while == is a comparison operator. x = 5; assigns x the value "5" x == 5; checks if x is equal to 5 and returns true or false.