Coders Campus Podcast
Latest Episodes
EP39 – Arrays in JavaScript
So we’ve talked a lot already about all the different data types and built-in objects in JavaScript, but not once have I mentioned Arrays. The reason for this is that […]
EP38 – JavaScript’s Built in Objects
Something that’s really useful to know about is the handful of objects that come built into the JavaScript language. These objects are tools that you can use to enable a […]
EP37 – Null vs Undefined in JavaScript
One thing that threw me off when I started learning JavaScript (with a background in Java) was the fact that JavaScript has both undefined and null as possible values for […]
EP36 – Objects in JavaScript
As we all know, JavaScript is an object oriented programming language, but we haven’t yet gone into detail about how objects work in JavaScript. Today, we’re going to change that! […]
EP35 – JavaScript TypeOf Keyword
We know that JavaScript is a dynamically typed language, but remember, this doesn’t mean that JavaScript is void of types. JavaScript absolutely has types that back its variables, we’re just […]
EP34 – JavaScript Alerts and Prompts – Getting and Showing Data from Users
Showing data to users and getting data from users is a pretty fundamental task in programming. If you come from a Java programming background, you’re probably used to using the […]
EP33 – Importing JavaScript into HTML via Script tag
Up to this point we haven’t talked about the elephant in the room! And that’s the fact that we’ve been talking about JavaScript for quite a while now, but we […]
EP32 – Debugging in JavaScript
Every programming language that you’ll use will have some sort of tool that allows you to debug the code you write. Without debugging, finding the errors in your code would […]
EP31 – Functions in JavaScript
Functions in any programming language are almost as important as having variables. So that should go without saying that functions are hugely important to understand and to use in the […]
EP30 – Landing the interview, a coder’s guide to applying for jobs
Everyone will, at some time or another, need to apply for positions and pass an interview or more to land the perfect job. Whether you are fresh out of school, or […]