GKGopala Krishnaningopala.hashnode.dev·Aug 24, 2021 · 2 min readStatic typing vs Dynamic typingStatic Typing For some programming languages like C, C++, and Java you need to specify the variable type while declaring it. This form of typing is called static typing. In this case, the value of the variable is determined at compile time itself by ...00
GKGopala Krishnaningopala.hashnode.dev·Aug 24, 2021 · 1 min readThe difference between "=", "==" and "==="In this article, I am going to tell the difference between =, == and === in javascript. I have chosen a small example to demonstrate the comparison of == and ===. = operator "=" is called the assignment operator which assigns whatever value you give...00