Blog in Monospace

We are going back to the early days of the internet when there were almost no fonts, no styling and web pages still looked ugly. Okay no, I'm not going to make this blog ugly, I'm going to make it "minimalistic"...



Learn programming: scoping in modern programming languages

Scoping in modern programming languages Warning: this is a more advanced post I assume you know certain things about programming languages A few weeks ago I learnt about a concept called “scoping” in programming languages. At its core it actually is only about which variables are available where. Let’s take a little example in Javascript: function test(a,b) { return a+b+c; } test(1,2) This will obviously fail because c is never defined anywhere.