Pergunta de entrevista da empresa Techport Thirteen

Can you explain the difference between = and ==?

Resposta da entrevista

Sigiloso

8 de jan. de 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.