How to debug JavaScript code with Chrome developer tools

How to debug JavaScript code with Chrome developer tools

Debugging JavaScript code is an essential skill. Since you don’t compile JavaScript code, you won’t get any compilation errors. This means you often will find bugs during runtime. To be an effective front-end developer, you need to be able to track down and fix bugs fast. In this post, I will show you different ways…

Should you use TypeScript instead of JavaScript?

Should you use TypeScript instead of JavaScript?

What are the benefits of TypeScript? In this article, I will show you with examples how TypeScript can improve your productivity (and your sanity). What is TypeScript? Open-sourced programming language created by Anders Hejlsberg from Microsoft. This is the same guy which created the C# language. TypeScript is a superset of JavaScript. So what does…

Which programming language should you learn to make mobile apps?

Which programming language should you learn to make mobile apps?

You might have heard that you create Android apps with Java or Kotlin and IOS apps with Objective-c or Swift. But actually, you have a lot more options which can be more compelling. We can divide the method of creating apps in three categories. Pure native language, hybrid Apps or compiled native apps. Let us…