Overview In this post, I will cover software installation steps and app setup from scratch. Software Installations In this course, I introduce TypeScript, which is the programming language we’ll use. TypeScript is the language we use when working with Angular. Let me take a moment to tell you what is TypeScript. “TypeScript is JavaScript with […]
Browsing Tag: JavaScript
JavaScript Getting Started | Variables var, let, and const | Part 2
Introduction In this JavaScript Getting Started, you will learn about JavaScript Variables var, let, and const along with their usage. Join me in learning variables and start using them in your work. What is a variable ? Any application that we write is going to be based on data. If we’re selling fruits, we need […]
JavaScript Getting Started | Introduction | Part 1
Introduction JavaScript is one of the most popular programming languages. JS is the top programming language, and it’s more than twice as popular as Python. JavaScript the ubiquitous language for the web, it’s reached beyond the web. It now runs inside of database engines, web servers, game consoles, and refrigerators. Backward compatibility is important when […]
Destructuring JavaScript objects and deep object assignment
In this post, I will show you how destructuring JavaScript objects and deep assignment works in JavaScript. This is the continuation of my previous post Destructuring javascript array and its different usages. Destructuring JavaScript objects is very useful. I can use it for a deep object structure as well. In this example, I wanted to […]
Destructuring javascript array and its different usages
One of the new features in ES6 is the ability to destructing assignment. Destructing is an operation that you might have seen in other languages like Python or Ruby. Destructuring operation allows us to assign value to a set of variables by destructing it and doing pattern matching. A complex data structure like an array […]
Difference between var, let and const in JavaScript (ES6)
In this post, I will explain the difference between var, let, and const in Javascript. I will be using a visual studio code for the demo purpose. This module is part of variables and parameters which is part of JavaScript Fundamentals for ES6. These features are designed to make JavaScript code easier to read, write, […]