Question d’entretien chez Techport Thirteen

Can you explain the difference between = and ==?

Réponse à la question d'entretien

Utilisateur anonyme

8 janv. 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.