Computer Science, asked by nikhilkhati, 7 months ago

difference between '=' and '= ='​

Answers

Answered by ananyassingh26091985
0

Explanation:

= is used for assigning values to a variable, == is used for comparing two variables, but it ignores the datatype of variable whereas === is used for comparing two variables, but this operator also checks datatype and compares two values.

Answered by dhyanapatel2010
0

Answer:

KEY DIFFERENCES:

= is called as assignment operator, == is called as comparison operator

= does not return true or false, == Return true only if the two operands are equal while === returns true only if both values and data types are the same for the two variables.

Similar questions