PPPranita Patilinpranitapatil.hashnode.dev·Oct 3, 2022 · 3 min readWhy Primitive and Non-primitive datatypes in JavaScript works differently when we try to copy data from one variable to another?In JavaScript, Primitive data types are - string, number, boolean, undefined, null, symbol and non-primitive data types are - arrays and objects which are also known as Reference data types. Let's see how it gets stored - There are basically two typ...00
PPPranita Patilinpranitapatil.hashnode.dev·Sep 19, 2022 · 4 min readData Binding in Angular ComponentIn Angular, component contains typescript (where we write a code logic) and html (template code) files. To access the data between typescript and html code data binding is used and this Data Binding is mainly of two types - One way data binding - w...00