1996 - 2004: Pascal, C++, Java, C# I started coding in high school in Pascal and then switched to C++ and eventually Java and C# later on, including also the years in the university (I studied Mathematics and Computer Science). We did a lot of algorithms on paper and in code but also small projects … Continue reading My programming language history
Tag: programming
Equality testing in JavaScript
Did you know that JavaScript has the “===” and “!==” operators to compare two variables? When we have to check in JavaScript whether two variables are equal or not equal, we use “==” or “!=”. It’s just the habit of the C# programmer. But those two operators are not reliable. Why, you ask?If the two … Continue reading Equality testing in JavaScript