diff --git a/02_Day/02_day_data_types.md b/02_Day/02_day_data_types.md index 05d1cc0..3917e1b 100644 --- a/02_Day/02_day_data_types.md +++ b/02_Day/02_day_data_types.md @@ -132,7 +132,7 @@ role:'teaching', country:'Finland' } -console.log(userOne == userTwo) +console.log(userOne == userTwo) //false ``` Rule of thumb, we do not compare non-primitive data types. Do not compare array, function, or object.