From 1b75fcd62344ee48422b00812db717940ac3bfe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B5=D9=84=20=D8=B9=D9=84=D9=89=20=D9=85=D9=86=20=D9=8A?= =?UTF-8?q?=D9=8F=D8=AC=D9=84=D8=B3=D9=87=20=D8=B1=D8=A8=D9=87=20=D8=B9?= =?UTF-8?q?=D9=84=D9=89=20=D8=B9=D8=B1=D8=B4=D9=87=20=D9=85=D8=B9=D9=87=20?= =?UTF-8?q?=D9=8A=D9=88=D9=85=20=D8=A7=D9=84=D9=82=D9=8A=D8=A7=D9=85=D8=A9?= =?UTF-8?q?=2E?= Date: Sun, 21 Dec 2025 09:15:39 +0200 Subject: [PATCH] typo --- 03_Day_Booleans_operators_date/03_booleans_operators_date.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Day_Booleans_operators_date/03_booleans_operators_date.md b/03_Day_Booleans_operators_date/03_booleans_operators_date.md index bb376ae..3e1b498 100644 --- a/03_Day_Booleans_operators_date/03_booleans_operators_date.md +++ b/03_Day_Booleans_operators_date/03_booleans_operators_date.md @@ -218,7 +218,7 @@ console.log('python'.length > 'dragon'.length) // false ``` Try to understand the above comparisons with some logic. Remembering without any logic might be difficult. -JavaScript is somehow a wired kind of programming language. JavaScript code run and give you a result but unless you are good at it may not be the desired result. +JavaScript is somehow a weird kind of programming language. JavaScript code run and give you a result but unless you are good at it may not be the desired result. As rule of thumb, if a value is not true with == it will not be equal with ===. Using === is safer than using ==. The following [link](https://dorey.github.io/JavaScript-Equality-Table/) has an exhaustive list of comparison of data types.